secluded/themes/secluded/assets/scss/_header.scss

66 lines
1.2 KiB
SCSS
Raw Normal View History

2023-08-11 19:06:32 +00:00
/*
body {
background: linear-gradient(to right top, $button-border 50%, $button-background 50%);
background-size: 100% calc(100% - 100vh + #{5px});
background-repeat: no-repeat;
}
body:before {
content:'';
position: fixed;
top: 5px;
bottom: 0;
width: 100%;
z-index: -1;
background: $light;
}
*/
2021-06-24 07:30:38 +00:00
.title-wrapper {
max-width: 800px;
margin: 0 auto;
padding-top: 20px;
padding-bottom: 10px;
.title {
font: bold 37px Heliotrope;
}
.menu {
float: right;
margin-top: 11px;
font-size: 29px;
ul {
list-style-type: none;
margin: 0px;
padding: 0px;
}
li {
2023-05-31 17:01:24 +00:00
display: inline-block;
2021-06-24 07:30:38 +00:00
padding-left: 15px;
}
2023-05-31 17:01:24 +00:00
@media (max-width: $max-width) {
2021-06-24 07:30:38 +00:00
float: none;
ul {
padding: 5px 0px 5px;
}
li {
padding-left: 0px;
padding-right: 15px;
}
}
}
a {
text-decoration: none;
color: inherit;
}
a:visited {
color: inherit;
}
border-bottom: 2px solid;
2023-05-31 17:01:24 +00:00
@media (max-width: $max-width) {
2023-01-18 14:30:36 +00:00
text-align: center;
}
2021-06-24 07:30:38 +00:00
}