wolegca.github.io/css/myui.css

389 lines
5.7 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;
}
body {
2019-09-13 23:15:55 +08:00
width: 100%;
2019-09-15 14:27:21 +08:00
z-index: 0;
position: relative;
display: block
2019-09-13 22:35:43 +08:00
}
#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%;
2019-09-13 23:15:55 +08:00
z-index: 4;
2019-09-13 22:35:43 +08:00
cursor: default
}
.menu-container {
display: block;
2019-09-15 14:27:21 +08:00
position: fixed;
/* float: left; */
2019-09-13 22:35:43 +08:00
top: 0;
left: 0;
2019-09-15 15:22:40 +08:00
height: 130%;
2019-09-13 22:35:43 +08:00
width: 0;
padding-top: 50px;
transition: all .2s ease;
overflow: hidden;
2019-09-13 23:15:55 +08:00
background-color: rgba(0, 0, 0, 0.5);
z-index: 2;
2019-09-13 22:35:43 +08:00
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);
}
.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;
2019-09-14 16:44:41 +08:00
width: 60px;
2019-09-13 22:35:43 +08:00
height: 30px;
cursor: pointer !important;
2019-09-13 23:15:55 +08:00
z-index: 4;
2019-09-14 17:56:41 +08:00
padding-left: 10px;
padding-top:2px
2019-09-13 22:35:43 +08:00
}
[for=menu-control].menu-button-container:hover span {
background-color: white;
}
[for=menu-control].content-mask {
display: block;
2019-09-15 14:27:21 +08:00
position: fixed;
2019-09-13 23:15:55 +08:00
width: 100%;
2019-09-15 15:06:21 +08:00
height: 200%;
2019-09-13 22:35:43 +08:00
background-color: rgba(0, 0, 0, .5);
float: left;
z-index: 1;
2019-09-13 23:15:55 +08:00
transition: all .2s ease;
2019-09-13 22:35:43 +08:00
opacity: 0;
2019-09-15 15:02:30 +08:00
visibility: hidden;
2019-09-15 15:22:40 +08:00
top:0px;
2019-09-15 15:02:30 +08:00
left:0px
2019-09-13 22:35:43 +08:00
}
2019-09-13 23:15:55 +08:00
#menu-control:checked~label.content-mask {
opacity: 1;
visibility: visible
}
2019-09-13 22:35:43 +08:00
.menu-button span {
width: 44px;
height: 3px;
background-color: #ccc;
display: block;
2019-09-14 16:44:41 +08:00
position: relative;
2019-09-13 22:35:43 +08:00
cursor: pointer;
2019-09-18 22:34:01 +08:00
transition: all .2s ease-in;
2019-09-18 23:11:41 +08:00
top:0px;
left:0px
}
.menu-button span:before{
content:'';
display: block;
position: relative;
margin-top:5px
2019-09-14 16:44:41 +08:00
}
#menu-control:checked~.menu-button-container .menu-button>span:nth-child(1){
2019-09-18 22:34:01 +08:00
transform:rotate(45deg);
width:30px;
top:8px;
2019-09-14 17:56:41 +08:00
left:2px
2019-09-14 16:44:41 +08:00
}
#menu-control:checked~.menu-button-container .menu-button>span:nth-child(2){
2019-09-18 22:34:01 +08:00
width:0px;
left:20px
2019-09-14 16:44:41 +08:00
}
#menu-control:checked~.menu-button-container .menu-button>span:nth-child(3){
2019-09-18 22:34:01 +08:00
transform:rotate(-45deg);
width:30px;
top:-8px;
2019-09-14 17:56:41 +08:00
left:2px
2019-09-13 22:35:43 +08:00
}
.content-border {
width: 100%;
2019-09-15 15:02:30 +08:00
position: relative;
2019-09-15 14:27:21 +08:00
padding: 50px 20px 25px;
2019-09-18 23:11:41 +08:00
transition: padding .5s ease .1s;
2019-09-15 14:27:21 +08:00
left: 50%;
transform:translateX(-50%)
2019-09-13 22:35:43 +08:00
}
.content {
min-height: 200px;
2019-09-15 14:27:21 +08:00
max-width: 1000px;
2019-09-18 22:34:01 +08:00
background-color: rgba(255, 255, 255, .8);
2019-09-13 22:35:43 +08:00
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
}
2019-09-15 14:27:21 +08:00
.content>span {
2019-09-13 22:35:43 +08:00
font-size: 24px;
font-weight: bold
}
2019-09-15 14:27:21 +08:00
.content>span+p:first-letter {
2019-09-13 22:35:43 +08:00
float: left;
font-size: 36px;
font-weight: bold
}
2019-09-15 14:27:21 +08:00
.content>p~p {
2019-09-13 22:35:43 +08:00
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;
2019-09-15 15:06:21 +08:00
word-break: break-word;
2019-09-12 23:24:39 +08:00
}
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%;
2019-09-15 14:27:21 +08:00
min-height: 40px;
2019-09-12 23:48:49 +08:00
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-18 22:34:01 +08:00
transition: all .2s 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-15 14:27:21 +08:00
position: fixed;
display: block;
2019-09-13 22:35:43 +08:00
width: 100%;
2019-09-15 15:06:21 +08:00
height: 200%;
2019-09-13 22:35:43 +08:00
background-color: rgba(95, 95, 95, 0.7);
z-index: 998;
2019-09-13 15:52:47 +08:00
opacity: 0;
2019-09-15 15:22:40 +08:00
top:0px;
2019-09-15 14:27:21 +08:00
left: 0px
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-15 15:02:30 +08:00
@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;
}
}
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%;
}
div.content-border {
padding: 50px 5px 25px;
}
2019-09-15 15:02:30 +08:00
.msg-footer span{
display:block;
position: absolute;
height:100%;
width:100%;
top:0px;
left:0px;
text-align: center;
padding-top:10px;
border-radius: 0 0 15px 15px
2019-09-13 22:35:43 +08:00
}
2019-09-15 15:02:30 +08:00
.msg-footer span:active{
2019-09-18 22:34:01 +08:00
background-color:black;
border-radius: 0px 0px 10px 13px;
color:white
2019-09-15 14:27:21 +08:00
}
2019-09-13 23:15:55 +08:00
}
@media screen and (max-width:480px) {
.msg-container {
max-width: 250px;
}
2019-09-12 23:24:39 +08:00
}