File: simpledesk.css

package info (click to toggle)
qlcplus 4.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,644 kB
  • sloc: cpp: 182,867; javascript: 7,764; xml: 2,453; ansic: 2,120; sh: 1,716; python: 634; ruby: 606; makefile: 23
file content (74 lines) | stat: -rw-r--r-- 1,674 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
html { height: 100%; background-color: #222; }

body {
 margin: 0px;
 background: #222;
}

.styled-select select {
 background: #aaa;
 width: 250px;
 height: 30px;
 margin-left: 15px;
 font-size: 16px;
 line-height: 1;
 border: 1px solid #bbb;
 border-radius: 4px;
}

.sdButton {
 display: inline-block;
 vertical-align: top;
 background: linear-gradient(to bottom, #F6F6F6 0%, #AAAAAA 100%);
 background: -ms-linear-gradient(top, #F6F6F6 0%, #AAAAAA 100%);
 background: -moz-linear-gradient(top, #F6F6F6 0%, #AAAAAA 100%);
 background: -o-linear-gradient(top, #F6F6F6 0%, #AAAAAA 100%);
 background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F6F6F6), color-stop(1, #AAAAAA));
 background: -webkit-linear-gradient(top, #F6F6F6 0%, #AAAAAA 100%);
 border-radius: 3px;
 border: 1px solid #808080;
 padding: 1px;
 height: 28px;
 width: 60px;
 text-align: center;
}

.sdButton:active { background: #868585; }

.sdSlider {
 position: relative;
 display: inline-block;
 border: 1px solid #777777;
 border-radius: 3px;
}

.sdslLabel {
 height:20px;
 text-align:center;
 font:normal 16px sans-serif;
}

input[type="range"].vVertical {
 -webkit-appearance: none;
 height: 4px;
 border: 1px solid #8E8A86;
 background-color: #888888;
 -webkit-transform:rotate(270deg);
 -webkit-transform-origin: 0% 50%;
 -moz-transform:rotate(270deg);
 -o-transform:rotate(270deg);
 -ms-transform:rotate(270deg);
 -ms-transform-origin:0% 50%;
 transform:rotate(270deg);
 transform-origin:0% 50%;
}

input[type="range"]::-webkit-slider-thumb {
 -webkit-appearance: none;
 background-color: #999999;
 border-radius: 4px;
 border: 1px solid #5c5c5c;
 width: 20px;
 height: 34px;
}