53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
.details {
|
|
background: var(--Main-Grey-100);
|
|
color: var(--Main-Grey-White);
|
|
padding: var(--Spacing-x3) var(--Spacing-x2) var(--Spacing-x7);
|
|
}
|
|
|
|
.topContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 0 var(--Spacing-x2) 0;
|
|
margin-bottom: var(--Spacing-x2);
|
|
}
|
|
|
|
.bottomContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.socialNav {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.navigationContainer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: var(--Spacing-x2);
|
|
padding-bottom: var(--Spacing-x2);
|
|
border-bottom: 1px solid #e3d9d120;
|
|
}
|
|
|
|
.navigation {
|
|
display: flex;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.details {
|
|
background: var(--Main-Grey-100);
|
|
color: var(--Main-Grey-White);
|
|
padding: var(--Spacing-x5) var(--Spacing-x5) var(--Spacing-x9);
|
|
}
|
|
.bottomContainer {
|
|
flex-direction: row;
|
|
}
|
|
.navigationContainer {
|
|
border-bottom: 0;
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
}
|