wolegca.github.io/myui.css

341 lines
5.0 KiB
CSS
Raw Normal View History

2019-09-12 23:48:49 +08:00
* {
touch-action: pan-y;
2019-09-13 22:35:43 +08:00
-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) no-repeat center;
background-size: cover;
width: 200%;
z-index: 0
}
#menu-control {
display: none
}
#menu-control:checked~label.content-mask {
opacity: 1;
visibility: visible
}
#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
}
.menu-container {
display: block;
position: relative;
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.8);
z-index: 1;
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;
2019-09-13 22:37:14 +08:00
padding: 4px 0 0;
2019-09-13 22:35:43 +08:00
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: 50px;
height: 30px;
cursor: pointer !important;
z-index: 3;
}
[for=menu-control].menu-button-container:hover span {
background-color: white;
}
[for=menu-control].content-mask {
display: block;
position: relative;
width: 50%;
height: 100%;
background-color: rgba(0, 0, 0, .5);
float: left;
z-index: 1;
transition: all .5s ease;
opacity: 0;
visibility: hidden
}
.menu-button span {
width: 44px;
height: 3px;
background-color: #ccc;
display: block;
margin: 5px 0 0 3px;
cursor: pointer;
transition: all .5s ease;
}
.content-border {
width: 100%;
height: 100%;
position: absolute;
padding: 50px 50px 25px;
overflow-y: scroll;
transition: padding .5s ease
}
.content {
min-height: 200px;
max-width: 800px;
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;
2019-09-12 23:24:39 +08:00
}
2019-09-12 23:48:49 +08:00
.msg-container {
2019-09-12 23:24:39 +08:00
display: block;
2019-09-12 23:48:49 +08:00
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
2019-09-13 15:52:47 +08:00
min-height: 150px;
2019-09-12 23:48:49 +08:00
min-width: 250px;
max-width: 460px;
color: white;
padding-bottom: 40px;
2019-09-12 23:24:39 +08:00
cursor: default;
border-radius: 10px;
2019-09-13 15:52:47 +08:00
box-shadow: 3px 2px 8px rgb(0, 0, 0);
2019-09-12 23:24:39 +08:00
opacity: 0;
2019-09-13 15:52:47 +08:00
animation: fadeIn .3s forwards;
2019-09-12 23:48:49 +08:00
z-index: 999;
2019-09-12 23:24:39 +08:00
text-overflow: ellipsis;
word-break: break-word
}
2019-09-12 23:48:49 +08:00
.msg-header {
display: block;
2019-09-12 23:24:39 +08:00
position: relative;
2019-09-12 23:48:49 +08:00
width: 100%;
min-height: 20px;
background-color: rgb(40, 40, 40);
2019-09-12 23:24:39 +08:00
cursor: move;
border-radius: 10px 10px 0px 0px;
padding: 10px;
text-align: center;
text-overflow: ellipsis;
word-break: break-word
}
2019-09-12 23:48:49 +08:00
.msg-content {
2019-09-12 23:24:39 +08:00
display: block;
position: relative;
2019-09-12 23:48:49 +08:00
width: 100%;
2019-09-13 15:52:47 +08:00
min-height: 70px;
2019-09-12 23:48:49 +08:00
background-color: rgb(50, 50, 50);
2019-09-12 23:24:39 +08:00
cursor: default;
2019-09-12 23:48:49 +08:00
padding: 10px;
2019-09-12 23:24:39 +08:00
text-overflow: ellipsis;
word-break: break-word
}
2019-09-12 23:48:49 +08:00
.msg-footer {
2019-09-12 23:24:39 +08:00
display: block;
position: fixed;
2019-09-12 23:48:49 +08:00
bottom: 0px;
width: 100%;
2019-09-12 23:24:39 +08:00
height: 40px;
2019-09-12 23:48:49 +08:00
background-color: rgb(30, 30, 30);
2019-09-12 23:24:39 +08:00
cursor: default;
border-radius: 0px 0px 10px 10px;
padding: 10px;
text-align: right;
text-overflow: ellipsis;
word-break: break-word
}
2019-09-12 23:48:49 +08:00
.msg-footer span {
2019-09-12 23:24:39 +08:00
cursor: pointer;
2019-09-12 23:48:49 +08:00
transition: all .1s ease;
2019-09-12 23:24:39 +08:00
font-size: 16px;
2019-09-12 23:48:49 +08:00
padding: 3px 8px;
2019-09-12 23:24:39 +08:00
}
2019-09-12 23:48:49 +08:00
.msg-footer span:hover {
color: #ccc
2019-09-12 23:24:39 +08:00
}
2019-09-12 23:48:49 +08:00
.msg-footer span:active {
color: rgb(50, 50, 50)
2019-09-12 23:24:39 +08:00
}
2019-09-13 22:35:43 +08:00
.mask {
2019-09-13 13:04:03 +08:00
position: absolute;
display: none;
2019-09-13 22:35:43 +08:00
width: 100%;
height: 100%;
background-color: rgba(95, 95, 95, 0.7);
z-index: 998;
2019-09-13 15:52:47 +08:00
opacity: 0;
2019-09-13 13:04:03 +08:00
}
2019-09-12 23:24:39 +08:00
@keyframes fadeIn {
2019-09-12 23:48:49 +08:00
from {
opacity: 0
}
to {
opacity: 1
}
2019-09-12 23:24:39 +08:00
}
@keyframes fadeOut {
2019-09-12 23:48:49 +08:00
from {
opacity: 1
}
to {
opacity: 0
}
2019-09-12 23:24:39 +08:00
}
2019-09-12 23:48:49 +08:00
@media screen and (max-width:480px) {
.msg-container {
2019-09-12 23:24:39 +08:00
max-width: 250px;
}
2019-09-13 22:35:43 +08:00
}
@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
}
2019-09-12 23:24:39 +08:00
}