98 lines
1.8 KiB
CSS
Raw Normal View History

2017-08-07 00:49:24 +02:00
html,body{
margin: 0;
padding: 0;
font-family: "Ubuntu";
font-size: 13px;
width: 100%;
height: 100%;
2017-08-27 23:40:02 +02:00
background-image: url(wp.png);
/*background-size: cover;*/
background-repeat: repeat;
2017-08-24 01:53:13 +02:00
overflow: hidden;
2017-08-07 00:49:24 +02:00
}
#wrapper{
margin: 0;
padding: 0;
min-height:100%;
overflow:hidden;
}
.afx-clear{
clear:both;
background-color: transparent;
border: 0;
height: 1px;
}
#workspace {
width: 100%;
position: absolute;
bottom: 0;
top: 24px;
}
#desktop{
position: absolute;
top:3px;
bottom: 0;
margin: 0;
left: 40px;
right: 0;
2017-08-11 01:58:46 +02:00
user-select:none;
cursor: default;
2017-08-07 00:49:24 +02:00
padding:0px;
2017-08-25 00:18:35 +02:00
}
2018-01-26 18:57:28 +01:00
#desktop > div.float_list_item {
display:block;
background-color:transparent;
text-align: center;
width: 70px;
color: white;
padding:3px;
}
#desktop > div.float_list_item_selected {
display:block;
background-color: #116cd6;
color:white;
border-radius: 6px;
text-align: center;
width: 70px;
color: white;
padding:3px;
}
#desktop > div.float_list_item i.file:before{
content: "\f15b\a";
font-family: "FontAwesome";
font-size: 32px;
display: block;
color: white;
font-style: normal;
font-weight: normal;
}
#desktop > div.float_list_item span{
width: 100%;
word-wrap: break-word;
}
#desktop > div.float_list_item i.dir:before{
display: block;
content: "\f07b\a";
font-family: "FontAwesome";
font-size: 32px;
color: #76D2F9;
font-weight: normal;
font-style: normal;
}
2017-08-25 00:18:35 +02:00
input {
outline: none;
padding: 2px;
height:23px;
border: 1px solid #a6a6a6;
2017-08-27 23:40:02 +02:00
background-color: #f6F6F6;
2017-08-25 00:18:35 +02:00
color: #414339;
border-radius: 5px;
box-sizing: border-box;
font-family: "Ubuntu";
font-size: 13px;
2017-08-07 00:49:24 +02:00
}