C-1: Initial repository
This commit is contained in:
433
styles/store.css
Normal file
433
styles/store.css
Normal file
@@ -0,0 +1,433 @@
|
||||
.header {
|
||||
background: linear-gradient(282.88deg, rgba(2, 128, 196, 0.2) 3.94%, rgba(255, 255, 255, 0.2) 84.15%), #0090DE;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 40px;
|
||||
max-width: 1232px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.header-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 1232px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
|
||||
padding: 24px 24px 56px;
|
||||
}
|
||||
|
||||
.header-tabs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.header-tabs-image {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.header-tab {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 40px;
|
||||
}
|
||||
|
||||
.header-tab-text {
|
||||
cursor: pointer;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
text-transform: uppercase;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.header-middle {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
place-items: center;
|
||||
justify-content: center;
|
||||
gap: 28px;
|
||||
margin: 180px 0 72px;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
height: fit-content;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.header-description {
|
||||
max-width: 62%;
|
||||
font-weight: 400;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.header-cards {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.header-card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
place-items: center;
|
||||
|
||||
padding: 20px;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #DCDCDC;
|
||||
border-radius: 12px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.header-card_primary {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.header-card_secondary {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.header-card-title {
|
||||
font-weight: 700;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
text-align: center;
|
||||
color: #2B2D3A;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.header-card-description {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
color: #2B2D3A;
|
||||
}
|
||||
|
||||
.header-card-image {
|
||||
margin-top: 16px;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.header-card-button-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
padding: 18px 0 24px;
|
||||
border-bottom: 2px dashed #D9D9D9;
|
||||
}
|
||||
|
||||
.header-card-button {
|
||||
padding: 14px 24px;
|
||||
background: #0090DE;
|
||||
border-radius: 8px;
|
||||
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.header-link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
gap: 8px;
|
||||
margin-top: 18px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.header-link:hover .header-link-text {
|
||||
color: #33BEF0;
|
||||
transition: .3s all linear;
|
||||
}
|
||||
|
||||
.header-link-images {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.header-link-image_secondary {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
opacity: 0;
|
||||
|
||||
transition: .3s all linear;
|
||||
}
|
||||
|
||||
.header-link-image {
|
||||
transition: .3s all linear;
|
||||
}
|
||||
|
||||
.header-link-text {
|
||||
text-transform: uppercase;
|
||||
font-weight: 550;
|
||||
font-size: 14px;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
color: #848484;
|
||||
}
|
||||
|
||||
.service-wrapper {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.service-wrapper_secondary {
|
||||
background: #F7F7F7;
|
||||
}
|
||||
|
||||
.service {
|
||||
flex-direction: row;
|
||||
gap: 80px;
|
||||
padding: 100px 0;
|
||||
max-width: 816px;
|
||||
}
|
||||
|
||||
.card-left-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.card-left-panel-image {
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.card-left-panel-text {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #2B2D3A;
|
||||
}
|
||||
|
||||
.card-right-panel {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.card-right-panel img {
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.card-left-panel-button {
|
||||
margin-top: 52px;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background: #2B2D3A;
|
||||
padding: 24px 24px 0;
|
||||
}
|
||||
|
||||
.footer-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.footer-text-name {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.footer-text-info {
|
||||
font-weight: 300;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
color: #FFFFFF;
|
||||
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.footer-phone {
|
||||
font-weight: 400;
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.header-link-image_part {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.card-left-panel-image_mobile {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.header-tabs-image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-tab-link {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-tabs {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header-middle {
|
||||
margin: 64px 0 24px;
|
||||
}
|
||||
|
||||
.header-cards {
|
||||
gap: 12px;
|
||||
position: relative;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header-card_primary {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-card_secondary {
|
||||
position: absolute;
|
||||
bottom: -290px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-container {
|
||||
padding: 24px 24px 186px;
|
||||
}
|
||||
|
||||
.header-card-title {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.header-card-button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header-card-image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-card-button-wrapper {
|
||||
border: none;
|
||||
padding: 12px 0;
|
||||
}
|
||||
|
||||
.header-link {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
padding: 14px;
|
||||
margin: 0;
|
||||
|
||||
background: #2B2D3A;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
main {
|
||||
padding-top: 120px;
|
||||
}
|
||||
|
||||
.header-link-text {
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
text-transform: none;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.header-link-image_part {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.header-link-image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-link-image_secondary {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.header-description {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.service {
|
||||
flex-direction: column-reverse;
|
||||
gap: 16px;
|
||||
background: #F7F7F7;
|
||||
border-radius: 12px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.card-left-panel {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.card-right-panel {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.card-left-panel-text {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-left-panel-button {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.service-wrapper {
|
||||
background: transparent;
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
.card-right-panel img {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.card-left-panel-image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.card-left-panel-image_mobile {
|
||||
display: flex;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user