init: 从宝塔同步到 Gitea
This commit is contained in:
@@ -0,0 +1,354 @@
|
||||
body{
|
||||
background: #EAE8E9;
|
||||
padding: 10px;
|
||||
font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif;
|
||||
min-width: 1670px;
|
||||
}
|
||||
.header{
|
||||
border: 1px solid #DAD6D6;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
.header_title{
|
||||
width: 20%;
|
||||
float: left;
|
||||
border-right: 1px solid #DAD6D6;
|
||||
font-size: 20px;
|
||||
}
|
||||
.logout{
|
||||
font-size: 14px;
|
||||
background-color: red;
|
||||
padding: 4px;
|
||||
line-height: 40px;
|
||||
color: #fff;
|
||||
border-radius: 4px;
|
||||
margin-left: 5%;
|
||||
cursor: pointer;
|
||||
}
|
||||
.member_bet{
|
||||
width: 15%;
|
||||
float: left;
|
||||
border-right: 1px solid #DAD6D6;
|
||||
text-align: center;
|
||||
}
|
||||
.button{
|
||||
background-color: #475f7c;
|
||||
padding: 5px;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
margin-left: 10px;
|
||||
cursor:pointer;
|
||||
}
|
||||
.header_button{
|
||||
width: 43%;
|
||||
float: left;
|
||||
border-right: 1px solid #DAD6D6;
|
||||
text-align: center;
|
||||
}
|
||||
.select_input{
|
||||
margin-left: 10px;
|
||||
}
|
||||
.table_info{
|
||||
display: inline-block;
|
||||
background-color: #fff;
|
||||
/*margin-top: 10px;*/
|
||||
margin-bottom: 10px;
|
||||
margin-right: 6px;
|
||||
cursor:pointer;
|
||||
vertical-align: top;
|
||||
}
|
||||
.info_left{
|
||||
height: 150px;
|
||||
width: 150px;
|
||||
background-color: #4985a1;
|
||||
float: left;
|
||||
}
|
||||
.info_right{
|
||||
height: 150px;
|
||||
width: 360px;
|
||||
background-color: #fff;
|
||||
float: left;
|
||||
}
|
||||
.table_name{
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
.table_result{
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 30px;
|
||||
line-height: 70px;
|
||||
}
|
||||
.table_number{
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
}
|
||||
.info_card{
|
||||
width: 30%;
|
||||
}
|
||||
.number_bet{
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
width: 40%;
|
||||
float: left;
|
||||
padding-top: 5px;
|
||||
height: 100px;
|
||||
}
|
||||
.result_word{
|
||||
width: 50%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.forecast_word{
|
||||
width: 50%;
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
.number_forecast{
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
width: 60%;
|
||||
float: right;
|
||||
color: red;
|
||||
padding-top: 5px;
|
||||
height: 100px;
|
||||
}
|
||||
.difference{
|
||||
font-size: 26px;
|
||||
line-height: 45px;
|
||||
text-align: center;
|
||||
height: 45px;
|
||||
float: left;
|
||||
width: 360px;
|
||||
background-color: #DAD6D6;
|
||||
border-radius: 10px;
|
||||
color: #9e9e9e;
|
||||
}
|
||||
.green{
|
||||
background-color: #147b14;
|
||||
}
|
||||
.blue{
|
||||
color: blue;
|
||||
}
|
||||
.red{
|
||||
color: red;
|
||||
}
|
||||
.yellow{
|
||||
color: yellow;
|
||||
}
|
||||
/*滑动开关*/
|
||||
.btn-switch{
|
||||
width: 80px;
|
||||
height: 27px;
|
||||
padding: 0;
|
||||
transition: all .3s;
|
||||
margin-left: 10px;
|
||||
border: 1px solid #6e6e6e;
|
||||
background: #475f7c;
|
||||
border-radius: 32px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
box-sizing: border-box;
|
||||
top:6.5px;
|
||||
}
|
||||
.btn-switch:after{
|
||||
position: absolute;
|
||||
content: "不占成";
|
||||
width: 48px;
|
||||
height: 27px;
|
||||
font-size: 16px;
|
||||
top: -6px;
|
||||
right: 5px;
|
||||
color: #fff;
|
||||
transition: all .5s;
|
||||
}
|
||||
.btn-switch.on {
|
||||
background: #475f7c;
|
||||
}
|
||||
.btn-switch.on:after {
|
||||
content: "占成";
|
||||
-webkit-transform: translateX(-26px);
|
||||
transform: translateX(-26px);
|
||||
}
|
||||
.btn-switch.on:before {
|
||||
-webkit-transform: translateX(52px);
|
||||
transform: translateX(52px);
|
||||
}
|
||||
.btn-switch:before {
|
||||
position: absolute;
|
||||
content: " ";
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
background: #fff;
|
||||
border-radius: 13px;
|
||||
left: 0px;
|
||||
right: auto;
|
||||
transition: all .5s;
|
||||
}
|
||||
.box_title{
|
||||
background-color: #4985a1;
|
||||
font-size: 24px;
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
color: #000;
|
||||
}
|
||||
.table_list{
|
||||
padding: 10px 20px;
|
||||
text-align: left;
|
||||
}
|
||||
.check_box{
|
||||
width: 180px;
|
||||
padding: 5px 0;
|
||||
display: inline-block;
|
||||
}
|
||||
.box_button{
|
||||
padding-bottom: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
.md-content .md-ensure {
|
||||
padding: 5px 15px;
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
border-radius: 10px;
|
||||
background-color: #0473f9;
|
||||
font-size: 16px;
|
||||
cursor:pointer;
|
||||
}
|
||||
.md-content .md-close {
|
||||
padding: 5px 15px;
|
||||
width: 40px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
border-radius: 10px;
|
||||
background-color: #e62525;
|
||||
font-size: 16px;
|
||||
cursor:pointer;
|
||||
margin-left: 15px;
|
||||
}
|
||||
.font_70_size{
|
||||
font-size: 70px;
|
||||
}
|
||||
.font_22_size{
|
||||
font-size: 22px;
|
||||
}
|
||||
.little_table_info {
|
||||
float: left;
|
||||
background-color: #fff;
|
||||
height: 150px;
|
||||
width: 400px;
|
||||
}
|
||||
.waybill{
|
||||
float: right;
|
||||
width: 670px;
|
||||
height: 150px;
|
||||
margin-left: 20px;
|
||||
|
||||
}
|
||||
.online_info{
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
}
|
||||
.gridtable_box{
|
||||
background-color: #fff;
|
||||
height: 500px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
table.gridtable {
|
||||
font-size:11px;
|
||||
color:#333333;
|
||||
border-width: 1px;
|
||||
border-color: #666666;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
table.gridtable th {
|
||||
border-width: 1px;
|
||||
padding: 8px;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
background-color: #e8e7e7;
|
||||
}
|
||||
table.gridtable td {
|
||||
text-align: center;
|
||||
border-width: 1px;
|
||||
padding: 6px;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
table.gridtable tbody{
|
||||
height: 300px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.gridtable_button{
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
border-radius: 15px;
|
||||
background-color: #fff;
|
||||
cursor:pointer;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.offline{
|
||||
background-color: #475f7c;
|
||||
padding: 4px;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.red{
|
||||
color: red;
|
||||
}
|
||||
.blue{
|
||||
color: blue;
|
||||
}
|
||||
.info_bottom table{
|
||||
font-size: 10px;
|
||||
color:#333333;
|
||||
border-width: 1px;
|
||||
border-color: #666666;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
.info_bottom table th {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
background-color: #e8e7e7;
|
||||
}
|
||||
.info_bottom table td {
|
||||
text-align: center;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.on_line table{
|
||||
font-size: 10px;
|
||||
color:#333333;
|
||||
border-width: 1px;
|
||||
border-color: #666666;
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
}
|
||||
.on_line table th {
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
background-color: #e8e7e7;
|
||||
}
|
||||
.on_line table td {
|
||||
text-align: center;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
border-color: #666666;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
Reference in New Issue
Block a user