Files
uberspace-webadmin/static/style.css

52 lines
1021 B
CSS
Raw Normal View History

2015-07-09 12:08:09 +03:00
body {
color: #333;
font-family: Arial,Helvetica,sans-serif;
font-size: 100%;
}
body warn {
color: #FF0000;
}
label {
display: block;
margin-top: 10px;
}
button {
margin-top: 5px;
2015-07-09 13:40:57 +03:00
cursor:pointer;
2015-07-09 12:08:09 +03:00
}
.boxed {
background: #ECF4FF none repeat scroll 0 0;
border: 1px solid green;
padding: 6px;
}
2015-07-09 14:49:54 +03:00
.wrapper {
background-color:#FFFFFF;
2015-07-10 10:41:21 +03:00
margin-bottom:50px;
2015-07-09 14:49:54 +03:00
}
2015-07-09 13:58:11 +03:00
.footer {
position:fixed;
height:50px;
2015-07-09 13:58:11 +03:00
bottom:0px;
margin-bottom:0px;
font-size:small;
2015-07-09 14:45:22 +03:00
z-index:-1;
2015-07-09 13:58:11 +03:00
}
2015-07-09 12:50:05 +03:00
/* New click/hide */
2015-07-10 15:04:02 +03:00
#gallery {position:relative; line-height:20px; width:380px; padding:0 0 10px 10px; margin-bottom:100px; height:100%;}
2015-07-09 12:50:05 +03:00
#gallery .switch {display:block; cursor:pointer; color:#000; font-weight:normal;}
#gallery .switch .turn_off {display:none;}
#gallery .off {color:#c00;}
#gallery .off .turn_off {display:inline;}
#gallery .off .turn_on {display:none;}
#gallery .hide {display:none;}
2015-07-09 13:40:57 +03:00
#gallery .show {position:absolute; top:0; left:400px; padding-bottom: 30px; display:block; width:370px; z-index:200;}
2015-07-09 12:08:09 +03:00
2015-07-09 12:50:05 +03:00