99 lines
1.5 KiB
SCSS
99 lines
1.5 KiB
SCSS
---
|
|
---
|
|
|
|
@import "{{ site.theme }}";
|
|
|
|
section {
|
|
width: 100%;
|
|
float:none;
|
|
position: relative;
|
|
|
|
}
|
|
footer{
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
}
|
|
.navBtn{
|
|
position: fixed;
|
|
background-color: #222;
|
|
overflow: hidden;
|
|
bottom: 15%;
|
|
right: 8%;
|
|
width: 50px;
|
|
height: 50px;
|
|
z-index: 100;
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
font-size: 1.3em;
|
|
color: white;
|
|
box-shadow: 1px 1px 4px black;
|
|
&:active, &:visited {
|
|
color: white;
|
|
}
|
|
i {
|
|
margin-top: 31%;
|
|
}
|
|
|
|
|
|
}
|
|
header > h4 {
|
|
color: white;
|
|
text-align: center
|
|
}
|
|
|
|
|
|
|
|
.hamNav{
|
|
position: fixed;
|
|
height: 0;
|
|
width: 0;
|
|
overflow-y: auto;
|
|
overflow-x: visible;
|
|
transition: 0.5s,
|
|
box-shadow 0.3s ease;
|
|
background: #222;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 9999999;
|
|
padding-top: 8%;
|
|
height: 100%;
|
|
text-align: center;
|
|
p,h1,h2,h3,h4,span,div,ul,li{
|
|
color: white;
|
|
}
|
|
ul {
|
|
padding-left: 0;
|
|
li {
|
|
list-style-type: none;
|
|
font-size: 1.5em;
|
|
padding-bottom: 4%;
|
|
margin-left: 0;
|
|
a, a:visited {
|
|
color: white
|
|
}
|
|
}
|
|
}
|
|
@media screen and (max-width: 720px){
|
|
&.show{
|
|
width: 100%;
|
|
}
|
|
}
|
|
@media screen and (min-width: 721px){
|
|
&.show{
|
|
width: 40%;
|
|
}
|
|
}
|
|
.closeNav{
|
|
position: absolute;
|
|
right: 10%;
|
|
top: 2%;
|
|
color: white;
|
|
font-size: 1.5em;
|
|
}
|
|
}
|
|
a:hover{
|
|
cursor: pointer;
|
|
}
|