You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.5 KiB
88 lines
1.5 KiB
2 months ago
|
.container{
|
||
|
margin-top: 30px;
|
||
|
}
|
||
|
#content{
|
||
|
max-width: 945px;
|
||
|
min-height: 250px;
|
||
|
}
|
||
|
.nav-tabs>li{
|
||
|
float: left;
|
||
|
}
|
||
|
#page-wrapper{
|
||
|
position: relative;
|
||
|
}
|
||
|
#page-wrapper>ul{
|
||
|
position: absolute;
|
||
|
top: 41px;
|
||
|
right: 430px;
|
||
|
}
|
||
|
#left-content{
|
||
|
font-size: 12px;
|
||
|
width: 16%;
|
||
|
word-break: break-all;
|
||
|
position: absolute;
|
||
|
top: 13%;
|
||
|
}
|
||
|
|
||
|
#stop{
|
||
|
margin-left: 20px;
|
||
|
}
|
||
|
/*.container {
|
||
|
width: 1000px;
|
||
|
}*/
|
||
|
|
||
|
#waite-send{
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
z-index: 1050;
|
||
|
display: none;
|
||
|
-webkit-overflow-scrolling: touch;
|
||
|
outline: 0;
|
||
|
background: rgba(0,0,0,.5);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
@-webkit-keyframes ajax-loader-rotate {
|
||
|
0% { -webkit-transform: rotate(0deg); }
|
||
|
100% { -webkit-transform: rotate(360deg); }
|
||
|
}
|
||
|
@-moz-keyframes ajax-loader-rotate {
|
||
|
0% { transform: rotate(0deg); }
|
||
|
100% { transform: rotate(360deg); }
|
||
|
}
|
||
|
@keyframes ajax-loader-rotate {
|
||
|
0% { transform: rotate(0deg); }
|
||
|
100% { transform: rotate(360deg); }
|
||
|
}
|
||
|
|
||
|
.ajax-loader {
|
||
|
opacity: .8;
|
||
|
display: block;
|
||
|
border-radius: 50%;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
font-size: 100px;
|
||
|
width: .25em;
|
||
|
height: .25em;
|
||
|
|
||
|
box-shadow:
|
||
|
0 -.4em 0 0 rgba(0,0,0,1),
|
||
|
-.28em -.28em 0 0 rgba(0,0,0,.75),
|
||
|
-.4em 0 0 0 rgba(0,0,0,.50),
|
||
|
-.28em .28em 0 0 rgba(0,0,0,.25)
|
||
|
;
|
||
|
|
||
|
-webkit-animation: .85s ajax-loader-rotate steps(8) infinite;
|
||
|
-moz-animation: .85s ajax-loader-rotate steps(8) infinite;
|
||
|
animation: .85s ajax-loader-rotate steps(8) infinite;
|
||
|
}
|
||
|
|
||
|
|