Skip to content

Commit

Permalink
Consept v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
axolotlagatsuma committed May 15, 2024
0 parents commit a475238
Show file tree
Hide file tree
Showing 57 changed files with 9,075 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# World of Engineering Website Consept
2 changes: 2 additions & 0 deletions css/aos.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

163 changes: 163 additions & 0 deletions css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
/********** common setting **********/
h2 {
font-size: 2.8rem !important;
font-weight: 700;
}

img {
display: block;
max-width: 100%;
}

a,
button {
cursor: pointer;
}

.jumbotron {
margin-bottom: 0 !important;
}

.atlas-cta {
border-radius: 22px !important;
padding: 12px 30px !important;
font-weight: 700;
transition: .3s ease-in-out !important;
}

.atlas-cta:hover {
text-decoration: none;
transform: translateY(-5px);
}

.atlas-cta-wide {
width: 100%;
}

.cta-green {
background: #00FFAD;
color: #192440;
}

.cta-green:hover {
color: #ffffff;
background: #00e69c;
}

.cta-blue {
background: #192440;
color: #ffffff;
}

.cta-blue:hover {
color: #ffffff;
background: #121a2e;
}

.cta-ghost {
border: 2px solid #192440 !important;
color: #192440;
}

.cta-ghost:hover {
color: #ffffff;
background: #121a2e;
}

#banner {
background-size: cover;
opacity: 0.85;
}

/********** banner **********/
#banner header {
overflow: hidden;
}

#banner header img {
max-width: 80px;
}

/********** feature (skew background) **********/
.feature img {
width: 100%;
max-width: 480px;
}

#feature-first {
background: linear-gradient(168deg, #ffffff 55%, #00FFAD 0);
}

#feature-last {
background: #00FFAD;
}

/********** price table **********/
#price-table {
padding-top: 4rem !important;
padding-bottom: 4rem !important;
}

#price-table__premium {
background: #192440;
color: #ffffff;
}

#price-table ul li {
padding: 5px 0;
}

/********** contact **********/
#contact {
background-size: cover;
}

#contact ul li {
padding: 3px 0;
}

#contact form {
color: #00FFAD;
}

#contact form input,
#contact form textarea {
background: transparent;
border: 1px solid #00FFAD;
color: #ffffff;
}

/********** copyright **********/
#copyright {
background: #192440;
padding: 2rem 3rem;
}

#copyright #social-media a {
width: 40px;
height: 40px;
border-radius: 99%;
background: #ffffff;
transition: .4s ease;
}

#copyright #social-media a i {
color: #192440;
font-size: 1.2rem;
line-height: 40px;
}

#copyright #social-media a:hover {
background: #00FFAD;
}

#copyright #social-media a:hover i {
color: #ffffff;
}

/********** RWD **********/
@media (max-width: 575px) {
#banner h1 {
font-size: 3.6rem;
}
}
Loading

0 comments on commit a475238

Please sign in to comment.