wolegca.github.io/index.css
2019-09-12 14:29:49 +08:00

180 lines
2.7 KiB
CSS

body,
html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden
}
body {
background:black url(bg.jpg) no-repeat center;
background-size: cover;
width: 200%;
z-index:0
}
input#menu-control {
display: none
}
div.menu-container {
display: block;
position: relative;
float: left;
top: 0;
left: 0;
height: 100%;
width: 0;
box-sizing: border-box;
padding-top: 50px;
transition: all .5s ease;
overflow: hidden;
background-color:rgba(255, 255, 255, 0.5);
z-index:1
}
div.menu-container ul {
position: relative;
padding: 0;
margin: 0;
top: 30%;
transform: translateY(-50%)
}
div.menu-container ul li {
list-style: none;
text-align: center;
white-space: nowrap
}
div.menu-container ul li * {
text-decoration: none;
color: #fff;
display: block;
padding: 8px 0 0;
transition: all .5s ease;
font-size: 24px;
height: 40px;
cursor: pointer
}
div.menu-container ul li *:hover {
background-color: rgba(0, 0, 0, .5)
}
div.menu-container ul>li+li:before {
content: '';
display: block;
height: 1px;
margin: 2px 2px
}
label[for=menu-control].menu-button-container {
display: block;
position: fixed;
top: 0;
left: 0;
width: 50px;
height: 30px;
cursor: pointer!important;
z-index:3
}
label[for=menu-control].content-mask{
display: block;
position: relative;
width:50%;
height:100%;
background-color:rgba(25, 25, 25,.9);
float: left;
z-index: 1;
transition:all .5s ease;
opacity: 0;
visibility: hidden
}
div.menu-button span {
width: 44px;
height: 3px;
background-color: #ccc;
display: block;
margin: 5px 0 0 3px;
cursor:pointer
}
div.content-border {
width: 100%;
height: 100%;
position: absolute;
box-sizing: border-box;
padding: 50px 50px 25px;
overflow-y: scroll
}
div.content {
min-height: 200px;
max-width: 800px;
background-color: #fff;
border-radius: 15px;
opacity: .5;
transition: opacity .5s ease,transform .5s ease;
cursor: pointer;
padding: 15px;
margin-bottom: 25px;
text-overflow:ellipsis;
font-size: 24px;
font-weight: bold;
z-index: 1
}
div.content:hover {
opacity: 1;
}
input#menu-control:checked~label.content-mask{
opacity: 1;
visibility: visible
}
@media screen and (max-width:700px) {
input#menu-control:checked+div.menu-container {
width: 50%;
left: 0
}
}
@media screen and (min-width:700px) {
input#menu-control:checked+div.menu-container {
width: 350px;
left: 0
}
div.content {
margin-left:auto;
margin-right:auto
}
div.content:hover {
transform:scale(1.05)
}
}
*{
-webkit-tap-highlight-color: transparent
}
#blog-title{
color:white;
white-space: nowrap;
position: fixed;
top:0px;
left:0px;
text-align: center;
font-size: 24px;
background-color:rgba(25, 25, 25,.9);
width:100%;
z-index:2;
cursor: default
}