Captain ALM
0b2ba868a3
All checks were successful
continuous-integration/drone/push Build is passing
Update page handling system. Update Makefile and .gitignore .
112 lines
1.7 KiB
CSS
112 lines
1.7 KiB
CSS
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
main{
|
|
padding-top: 90px;
|
|
padding-left: 6px;
|
|
}
|
|
.no-dec{
|
|
text-decoration: none;
|
|
}
|
|
.no-lst-style{
|
|
list-style: none;
|
|
}
|
|
.header{
|
|
box-shadow: 1px 1px 5px 0px;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
.home-button{
|
|
display: inline-block;
|
|
font-size: 60px;
|
|
padding: 7px 10px 6px;
|
|
}
|
|
.nav{
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
max-height: 0;
|
|
}
|
|
.nav-menu{
|
|
display: none;
|
|
}
|
|
.menu a{
|
|
display: block;
|
|
padding: 32px 30px;
|
|
}
|
|
.hmb{
|
|
cursor: pointer;
|
|
float: right;
|
|
background-color: transparent;
|
|
padding: 40px 20px;
|
|
}
|
|
.hmb-line{
|
|
display: block;
|
|
height: 2px;
|
|
position: relative;
|
|
width: 24px;
|
|
|
|
}
|
|
.hmb-line::before, .hmb-line::after{
|
|
content: '';
|
|
display: block;
|
|
height: 100%;
|
|
position: absolute;
|
|
transition: all .1s ease-out;
|
|
width: 100%;
|
|
}
|
|
.hmb-line::before{
|
|
top: 5px;
|
|
}
|
|
.hmb-line::after{
|
|
top: -5px;
|
|
}
|
|
.nav-menu:checked ~ nav{
|
|
max-height: 100%;
|
|
}
|
|
.nav-menu:checked ~ .hmb .hmb-line{
|
|
background: transparent;
|
|
}
|
|
.nav-menu:checked ~ .hmb .hmb-line::before{
|
|
transform: rotate(-45deg);
|
|
top:0;
|
|
}
|
|
.nav-menu:checked ~ .hmb .hmb-line::after{
|
|
transform: rotate(45deg);
|
|
top:0;
|
|
}
|
|
.flex-main{
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.box-main{
|
|
display: table;
|
|
width: 100%;
|
|
margin: 1px;
|
|
align-self: center;
|
|
}
|
|
@media (min-width: 480px){
|
|
.nav{
|
|
max-height: none;
|
|
top: 0;
|
|
position: relative;
|
|
float: right;
|
|
width: fit-content;
|
|
}
|
|
.menu li{
|
|
float: left;
|
|
}
|
|
.menu a:hover{
|
|
background-color: transparent;
|
|
|
|
}
|
|
.hmb{
|
|
display: none;
|
|
}
|
|
.box-main{
|
|
margin: 5px 10px;
|
|
}
|
|
} |