pilpil-server/static/style.css

253 lines
5.1 KiB
CSS
Raw Normal View History

2022-10-06 20:08:04 +02:00
body {color:#fff;background-color:#666;margin:0;}
div {box-sizing: border-box;}
2022-10-06 11:44:59 +02:00
h2 {margin:0;}
2022-11-12 18:17:25 +01:00
table {background-color: #555;margin-left:.5em;max-width:100%;font-size:.9em}
2022-10-08 16:49:45 +02:00
td {padding: 0;}
2022-10-06 11:44:59 +02:00
th {background-color: #aaa;}
tr:nth-child(2n+1) {background-color: #888;}
2022-10-08 16:49:45 +02:00
* {box-sizing: border-box;}
.btn-group-lg > .btn, .btn-lg {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
2022-10-06 11:44:59 +02:00
2022-10-08 16:49:45 +02:00
#master_remote {
background: linear-gradient(0deg, #222 10%, #444 80%);
min-height: 20em;
}
2022-10-06 11:44:59 +02:00
#master_remote .right_col {background-color:transparent;}
2022-10-08 16:49:45 +02:00
.client_container {
border-bottom: #222 solid 1px;
display:none;
background: linear-gradient(0deg, #999 10%, #666 80%);
2022-12-12 16:56:33 +01:00
position:relative;
2022-10-08 16:49:45 +02:00
}
/*
.client_container .left_col{border-right: #a8a8a8 2px solid;}
*/
2022-10-06 11:44:59 +02:00
.client_container .button{}
2022-12-12 16:56:33 +01:00
.client_container .upload_dialog_cont {
position: absolute;
width: 100%;
background-color: #fff8;
height: 100%;
padding: 1em 0;
}
.client_container .upload_dialog {
width: 30%;
background-color: #cecece;
height: 100%;
margin: auto;
padding: 2em;
border: #00000047 2px solid;
border-radius: 5px;
color: #444;
text-align: center;
}
.client_container [id^="ul_dialog_cont_"] {
display:none;
}
.client_container .upload_dialog button {
background: #bbb;
color: #444;
width: 3em;
height: 3em;
line-height: 1em;
}
.client_container .upload_dialog .progress_bar {
background: #fff;
height: 1.4em;
border-radius: .7em;
border: #999 2px solid;
text-align: center;
transition: background 3s;
margin:.5em;
}
.client_container .upload_dialog .upload_status {}
.client_container .upload_dialog table {
margin: auto;
background: transparent;
width: 100%;
}
.client_container .upload_dialog [id^="ul_status_"] {}
2022-10-06 20:08:04 +02:00
/*
2022-10-06 11:44:59 +02:00
.timeline {height: 3em;background-color: #0f0;margin: 2em 0;}
2022-10-06 20:08:04 +02:00
*/
.timeline {
2022-10-06 20:08:04 +02:00
height: 75px;
2022-10-08 16:49:45 +02:00
width:100%;
margin-top:1em;
background-color: #33333361;
2022-10-06 20:08:04 +02:00
}
[id^="tl_cont"] {
float: left;
width: 10%;
height: 75px;
margin: 0;
padding: 0;
2023-01-08 16:54:25 +01:00
background-color:#F00;
2022-10-06 20:08:04 +02:00
}
2023-01-08 16:54:25 +01:00
/*
[id^="tl_cont"]:nth-child(2n+1) [id^="tl_drag"] {
background-color:#255E70;
}
*/
2022-10-06 20:08:04 +02:00
[id^="tl_drag"] {
cursor: grab;
text-align:center;
height:75px;
line-height: 75px;
width:100%;
2022-10-08 16:49:45 +02:00
background-color:#1F7B99;
2023-01-08 16:54:25 +01:00
background-size: cover;
background-position: center;
box-shadow: inset 0 0 20px #0008;
2022-10-06 20:08:04 +02:00
}
2022-10-06 11:44:59 +02:00
.client_container:nth-child(2n+1) {background-color:#444;}
.command {margin: 0 !important;}
.buttons {width:75%;margin:auto;text-align: center;padding: 2em;}
.btn {
margin:auto;
2022-10-06 20:08:04 +02:00
width:3em;
2022-10-06 11:44:59 +02:00
height: 4em;
display:inline-block;
2022-10-08 16:49:45 +02:00
padding: 0;
2022-10-06 11:44:59 +02:00
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
border-radius: 4px;
2022-10-08 16:49:45 +02:00
background: linear-gradient(0deg, #b9b9b9 10%, #f9f9f9 80%);
2022-10-06 11:44:59 +02:00
}
2022-10-25 18:43:20 +02:00
.btn:hover {
background:#C8FFBD;
box-shadow: 0 0 10px #A5FF9F;
}
.btn:active {
background: #91FF7C;
box-shadow: 0 0 18px #91FF7C;
}
2022-10-06 11:44:59 +02:00
.btn_txt {display: block;font-size: small;}
.delete_btn {
width: 5em;
height: 3em;
background-color: #df7474;
border: 0;
float: right;
font-size: 2em;
line-height: 2em;
margin: 0;
padding: 0;
}
.delete_btn:hover {
box-shadow: 0 0 10px #df7474;
}
2022-10-08 16:49:45 +02:00
/*Right column*/
2022-11-12 18:17:25 +01:00
.right_col {width: 71%;display: inline-block;}
2022-10-06 11:44:59 +02:00
/*Left column*/
2022-11-12 18:17:25 +01:00
.left_col {width: 28%;display: inline-block;float: left;clear: left;}
2022-10-06 11:44:59 +02:00
.left_col button {
width: 2em;
height: 2em;
padding: 0;
line-height: 2em;
}
2022-10-08 16:49:45 +02:00
.left_col button .btn_txt {
display:none;
2022-10-25 18:43:20 +02:00
color: #fff;
font-weight: bold;
2022-10-08 16:49:45 +02:00
font-size: medium;
background-color: #ff3030;
border: 1px solid #fff;
padding: 0 .5%;
2022-10-25 18:43:20 +02:00
width: 100px;
position: absolute;
2022-10-08 16:49:45 +02:00
}
2022-10-25 18:43:20 +02:00
.left_col button:hover .btn_txt {display:block;}
2022-10-06 11:44:59 +02:00
.col_1 {
2022-11-12 18:17:25 +01:00
width: 40%;
float: left;
2022-12-12 16:56:33 +01:00
padding: 1% 0 0 2%;
2022-10-06 11:44:59 +02:00
}
.col_2 {
2022-11-12 18:17:25 +01:00
width: 59%;
padding:.5em;
2022-12-12 16:56:33 +01:00
overflow-y: scroll;
2022-11-12 18:17:25 +01:00
}
.col_2 div {
max-height: 170px;
}
.col_2 button {
background: #bbb;
color: #444;
2022-12-12 16:56:33 +01:00
width: 1em;
height: 1em;
line-height: 1.1em;
2022-10-06 11:44:59 +02:00
}
2022-10-08 16:49:45 +02:00
.indicator {
2022-11-12 18:17:25 +01:00
display:inline-block;
background-color: #C32600;
margin: 0 0 0 5%;
padding: 0.3em;
2022-10-08 16:49:45 +02:00
}
.table_cont table {
margin:0;
width:100%;
}
2022-11-12 18:17:25 +01:00
.file_sel {
width: 100%;
margin: 0;
}
2022-11-15 17:00:36 +01:00
.file_selection {
cursor: pointer;
}
.file_selection:hover {
background-color: rgb(255, 136, 57);
}
2022-10-06 11:44:59 +02:00
.wl_indicator {
2022-11-12 18:17:25 +01:00
display: inline-block;
background-color: #bbb;
vertical-align: bottom;
margin: 0 1px;
padding: 0;
height: .5em;
width: 5%;
2022-10-06 11:44:59 +02:00
}
#wl_0 {height:.5em;}
#wl_1 {height:.65em;}
#wl_2 {height:.80em;}
2022-10-08 16:49:45 +02:00
#wl_3 {height:.95em;}
@media screen and (max-width: 800px) {
table {margin:0}
td {padding:0;}
.btn-group-lg > .btn, .btn-lg {
font-size:14px;
}
.left_col {width: 30%;}
.right_col {width: 69.9%;}
.col_2 {
overflow: scroll;
font-size: .9em;
}
}