mirror of
https://github.com/Nezumi-2711/loi-phan-internship.git
synced 2026-09-23 04:10:00 +00:00
106 lines
1.8 KiB
CSS
106 lines
1.8 KiB
CSS
@import url("./abstracts/variables.css");
|
|
@import url("./base/typo.css");
|
|
|
|
.header__background {
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
width: 1175px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 35px;
|
|
padding-bottom: 40px;
|
|
margin: auto;
|
|
color: var(--white);
|
|
font-family: var(--ff-worksans-regular);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.logo {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.nav__lists {
|
|
list-style: none;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 30px;
|
|
}
|
|
|
|
.nav__items-link {
|
|
text-decoration: none;
|
|
color: var(--white);
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.nav__items-link:hover {
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.welcome__container {
|
|
margin: auto;
|
|
width: 1180px;
|
|
display: flex;
|
|
gap: 120px;
|
|
padding-bottom: 82.87px;
|
|
align-items: center;
|
|
}
|
|
|
|
.welcome__image {
|
|
width: 644.279px;
|
|
height: 378.13px;
|
|
}
|
|
|
|
.welcome__content > p {
|
|
font-size: 16px;
|
|
font-family: var(--ff-worksans-700);
|
|
letter-spacing: 5px;
|
|
text-transform: uppercase;
|
|
color: var(--white);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.welcome__content h1 {
|
|
font-size: 40px;
|
|
font-family: var(--ff-crimsontext-700);
|
|
line-height: 125%;
|
|
color: var(--white);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.welcome__content .welcome__description {
|
|
text-transform: none;
|
|
font-size: 15px;
|
|
letter-spacing: 0px;
|
|
font-family: var(--ff-worksans-regular);
|
|
line-height: 125%;
|
|
color: var(--white);
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.btn {
|
|
border-radius: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 170px;
|
|
height: 48px;
|
|
border: none;
|
|
color: var(--black);
|
|
background-color: var(--white);
|
|
cursor: pointer;
|
|
transition: 0.2s;
|
|
text-decoration: none;
|
|
font-size: 20px;
|
|
font-family: Work Sans;
|
|
line-height: 125%;
|
|
font-family: var(--ff-worksans-regular);
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: var(--black);
|
|
color: var(--white);
|
|
}
|