wolegca.github.io/myui.css
2019-09-15 14:27:21 +08:00

376 lines
5.7 KiB
CSS

* {
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
box-sizing: border-box
}
body,
html {
margin: 0;
padding: 0;
/* height: 100%; */
/* overflow: hidden */
}
body {
background: black url(bg.jpg) repeat-y center;
background-size: cover;
width: 100%;
z-index: 0;
position: relative;
display: block
}
#menu-control {
display: none
}
#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: 4;
cursor: default
}
.menu-container {
display: block;
position: fixed;
/* float: left; */
top: 0;
left: 0;
height: 100%;
width: 0;
padding-top: 50px;
transition: all .2s ease;
overflow: hidden;
background-color: rgba(0, 0, 0, 0.5);
z-index: 2;
box-shadow: 2px 0px 8px black
}
.menu-container ul {
position: relative;
padding: 0;
margin: 0;
top: 30%;
transform: translateY(-50%)
}
.menu-container ul li {
list-style: none;
text-align: center;
white-space: nowrap
}
.menu-container ul li * {
text-decoration: none;
color: white;
display: block;
padding: 4px 0 0;
transition: all .3s ease;
font-size: 24px;
height: 40px;
cursor: pointer
}
.menu-container ul li *:hover {
background-color: rgba(255, 255, 255, .2);
/*color: black*/
}
.menu-container ul li *:active {
background-color: gray;
}
.menu-container ul>li+li:before {
content: '';
display: block;
height: 1px;
margin: 2px 2px
}
[for=menu-control].menu-button-container {
display: block;
position: fixed;
top: 0;
left: 0;
width: 60px;
height: 30px;
cursor: pointer !important;
z-index: 4;
padding-left: 10px;
padding-top:2px
}
[for=menu-control].menu-button-container:hover span {
background-color: white;
}
[for=menu-control].content-mask {
display: block;
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .5);
float: left;
z-index: 1;
transition: all .2s ease;
opacity: 0;
visibility: hidden
}
#menu-control:checked~label.content-mask {
opacity: 1;
visibility: visible
}
.menu-button span {
width: 44px;
height: 3px;
background-color: #ccc;
display: block;
position: relative;
margin: 5px 0 0 3px;
cursor: pointer;
transition: all .2s ease;
left:0px;
top:0px
}
#menu-control:checked~.menu-button-container .menu-button>span:nth-child(1){
transform:rotate(-30deg);
width:20px;
top:3px;
left:2px
}
#menu-control:checked~.menu-button-container .menu-button>span:nth-child(2){
/* transform:rotate(-180deg); */
width:30px;
left:3px
}
#menu-control:checked~.menu-button-container .menu-button>span:nth-child(3){
transform:rotate(30deg);
width:20px;
top:-3px;
left:2px
}
.content-border {
width: 100%;
/* height: 100%; */
position: absolute;
padding: 50px 20px 25px;
overflow-y: scroll;
transition: padding .5s ease;
left: 50%;
transform:translateX(-50%)
}
.content {
min-height: 200px;
max-width: 1000px;
background-color: rgba(255, 255, 255, .5);
border-radius: 15px;
opacity: 1;
transition: opacity .5s ease, transform .5s ease;
cursor: default;
padding: 15px;
margin-bottom: 25px;
text-overflow: ellipsis;
z-index: 1;
text-align: center
}
.content:hover {
opacity: 1;
}
.content img {
margin: 0 auto;
max-width: 100%;
max-height: 100%
}
.content p {
font-size: 18px;
text-align: left
}
.content>span {
font-size: 24px;
font-weight: bold
}
.content>span+p:first-letter {
float: left;
font-size: 36px;
font-weight: bold
}
.content>p~p {
text-indent: 36px;
}
.msg-container {
display: block;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-height: 150px;
min-width: 250px;
max-width: 460px;
color: white;
padding-bottom: 40px;
cursor: default;
border-radius: 10px;
box-shadow: 3px 2px 8px rgb(0, 0, 0);
opacity: 0;
animation: fadeIn .3s forwards;
z-index: 999;
text-overflow: ellipsis;
word-break: break-word
}
.msg-header {
display: block;
position: relative;
width: 100%;
min-height: 40px;
background-color: rgb(40, 40, 40);
cursor: move;
border-radius: 10px 10px 0px 0px;
padding: 10px;
text-align: center;
text-overflow: ellipsis;
word-break: break-word
}
.msg-content {
display: block;
position: relative;
width: 100%;
min-height: 70px;
background-color: rgb(50, 50, 50);
cursor: default;
padding: 10px;
text-overflow: ellipsis;
word-break: break-word
}
.msg-footer {
display: block;
position: fixed;
bottom: 0px;
width: 100%;
height: 40px;
background-color: rgb(30, 30, 30);
cursor: default;
border-radius: 0px 0px 10px 10px;
padding: 10px;
text-align: right;
text-overflow: ellipsis;
word-break: break-word
}
.msg-footer span {
cursor: pointer;
transition: all .1s ease;
font-size: 16px;
padding: 3px 8px;
}
.msg-footer span:hover {
color: #ccc
}
.msg-footer span:active {
color: rgb(50, 50, 50)
}
.mask {
position: fixed;
display: block;
width: 100%;
height: 100%;
background-color: rgba(95, 95, 95, 0.7);
z-index: 998;
opacity: 0;
top:0px;
left: 0px
}
@keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes fadeOut {
from {
opacity: 1
}
to {
opacity: 0
}
}
@media screen and (max-width:700px) {
body {
width: 100%
}
div.content {
opacity: 1
}
input#menu-control:checked+div.menu-container {
width: 100%;
}
/* input#menu-control:checked~label.content-mask {
opacity: 0;
visibility: hidden
} */
div.content-border {
padding: 50px 5px 25px;
}
}
@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
}
.content-border{
padding-left: 260px;
}
}
@media screen and (max-width:480px) {
.msg-container {
max-width: 250px;
}
}