source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/editor/css/dark.css

Last change on this file was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

File size: 2.9 KB
Line 
1* {
2 vertical-align: middle;
3}
4
5 /* Webkit micro scrollbars */
6
7 ::-webkit-scrollbar {
8 width:9px;
9 }
10
11 ::-webkit-scrollbar-track {
12 -webkit-border-radius:5px;
13 border-radius:5px;
14 background:rgba(140,140,140,0.1);
15 }
16
17 ::-webkit-scrollbar-thumb {
18 -webkit-border-radius:5px;
19 border-radius:5px;
20 background:rgba(140,140,140,0.2);
21 }
22
23 ::-webkit-scrollbar-thumb:hover {
24 background:rgba(140,140,140,0.4);
25 }
26
27 ::-webkit-scrollbar-thumb:window-inactive {
28 background:rgba(140,140,140,0.5);
29 }
30
31body {
32 font-family: Arial, sans-serif;
33 font-size: 14px;
34 margin: 0;
35 overflow: hidden;
36}
37
38hr {
39 border: 0px;
40 border-top: 1px solid #ccc;
41}
42
43button {
44 position: relative;
45}
46
47.Panel {
48
49 -moz-user-select: none;
50 -webkit-user-select: none;
51 -ms-user-select: none;
52
53 /* No support for these yet */
54 -o-user-select: none;
55 user-select: none;
56}
57
58.FancySelect {
59 background: #222;
60 border: 1px solid #3C3C3C;
61 padding: 0;
62 cursor: default;
63 overflow: auto;
64 outline: none;
65}
66
67 .FancySelect .option {
68 padding: 4px;
69 white-space: nowrap;
70 }
71
72 .FancySelect .option.active {
73 background-color: #153C5E;
74 }
75
76input.Number {
77 color: #2A75B7;
78 font-size: 12px; /** TODO: Use of !imporant is not ideal **/
79 background-color: transparent!important; /* For now this is a quick fix a rendering issue due to inherited background */
80 border: 1px solid transparent;
81 padding: 2px;
82 cursor: col-resize;
83}
84
85#viewport {
86 position: absolute;
87 top: 32px;
88 left: 0px;
89 right: 300px;
90 bottom: 32px;
91}
92
93#menubar {
94 position: absolute;
95 width: 100%;
96 height: 32px;
97 background-color: #111;
98 padding: 0px;
99 margin: 0px;
100}
101
102 #menubar .menu {
103 float: left;
104 width: 50px;
105 cursor: pointer;
106 }
107
108 #menubar .Panel {
109 color: #888;
110 }
111
112 #menubar .menu .options {
113 display: none;
114 padding: 5px 0px;
115 background-color: #111;
116 width: 140px;
117 border-top: solid 1px #1D1D1D;
118 }
119
120 #menubar .menu:hover .options {
121 display: block;
122 }
123
124 #menubar .menu .options hr {
125 border-color: #444;
126 }
127
128 #menubar .menu .options .option {
129 color: #666;
130 background-color: transparent;
131 padding: 5px 10px;
132 margin: 0px !important;
133 }
134
135 #menubar .menu .options .option:hover {
136 color: #fff;
137 background-color: #08f;
138 }
139
140
141#sidebar {
142 position: absolute;
143 right: 0px;
144 top: 32px;
145 bottom: 0px;
146 width: 300px;
147 background-color: #111;
148 overflow: auto;
149}
150
151 #sidebar input,
152 #sidebar textarea,
153 #sidebar select {
154 background: #ccc;
155 }
156
157 #sidebar .Panel {
158 margin-bottom: 10px;
159 }
160
161 #sidebar > .Panel {
162 color: #888;
163 padding: 10px;
164 border-top: 1px solid #333;
165 }
166
167 #sidebar #outliner {
168 width: 100%;
169 height: 140px;
170 color: #868686;
171 font-size: 12px;
172 }
173
174 #sidebar .Panel.Material canvas {
175
176 border: solid 1px #5A5A5A;
177
178 }
179
180#toolbar {
181 position: absolute;
182 left: 0px;
183 right: 300px;
184 bottom: 0px;
185 height: 32px;
186 background-color: #111;
187 color: #333;
188}
189
190 #toolbar .Panel {
191 padding: 4px;
192 color: #888;
193 }
194
195 #toolbar button {
196 margin-right: 6px;
197 }
198
199
Note: See TracBrowser for help on using the repository browser.