]> Pileus Git - ~andy/gtk/blob - demos/gtk-demo/cssview.css
gtk-demo: Remove file lists from demo data
[~andy/gtk] / demos / gtk-demo / cssview.css
1 /* Make the text editor has a nice style */
2 .view {
3   color: #2e3436;
4   font: Monospace;
5   background-color: alpha(white, 0.30);
6 }
7
8 .view:selected {
9   color: white;
10   background-color: #4a90d9;
11 }
12
13 .scrollbar.trough,
14 .scrollbars-junction {
15   background-color: alpha(white, 0.80);
16 }
17
18 .scrollbar.slider {
19   border-width: 3px;
20   border-style: solid;
21   border-radius: 10px;
22   border-color: transparent;
23   background-clip: padding-box;
24   background-color: #999;
25 }
26
27 .scrollbar.slider:prelight {
28   background-color: #555;
29 }
30
31 .pane-separator {
32   background-color: alpha(white, 0.80);
33   background-image: linear-gradient(transparent, transparent 1px, #999 1px, #999 4px, transparent 4px);
34   background-size: 40px auto;
35   background-repeat: no-repeat;
36   background-position: center;
37 }
38
39 .pane-separator:prelight {
40   background-image: linear-gradient(transparent, transparent 1px, #555 1px, #555 4px, transparent 4px);
41 }