phantasma/app/static/css/partials/_menu.scss

57 lines
1,001 B
SCSS
Raw Normal View History

.topnav {
2021-10-22 09:56:53 +00:00
background-color: #333e;
position: relative;
2021-10-14 07:52:51 +00:00
height: 68px;
padding: var(--spacing-2);
box-sizing: border-box;
@media screen and (max-width: 799px) {
2021-10-14 07:52:51 +00:00
padding-top: calc(var(--spacing) * 1.6);
}
@media screen and (min-width: 800px) {
display: flex;
align-items: flex-end;
}
nav {
display: block;
text-align: right;
@media screen and (max-width: 799px) {
2021-10-12 15:20:58 +00:00
text-align: center;
width: 100%;
2021-10-14 07:52:51 +00:00
margin-top: var(--spacing);
}
@media screen and (min-width: 800px) {
margin-left: auto;
}
}
a {
color: white;
text-decoration: none;
font-size: 17px;
2021-10-14 07:52:51 +00:00
margin-left: var(--spacing);
2021-10-12 15:20:58 +00:00
@media screen and (max-width: 799px) {
&.title {
display: block;
text-align: center;
}
div {
display: inline-block;
}
}
}
}
2021-10-14 07:52:51 +00:00
.title-text {
@media screen and (min-width: 800px) {
font-weight: 700;
padding-bottom: calc(var(--spacing) / 2);
}
2021-10-21 16:10:13 +00:00
}