-rw-r--r-- | content/fireflix.css | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/content/fireflix.css b/content/fireflix.css new file mode 100644 index 0000000..188f48e --- a/dev/null +++ b/content/fireflix.css | |||
@@ -0,0 +1,90 @@ | |||
1 | .generated.wholething, | ||
2 | .about.wholething, | ||
3 | tabbox, tabpanels, tabpanel { | ||
4 | background: url("background.jpeg"); | ||
5 | } | ||
6 | tabpanels { | ||
7 | padding: 0px; | ||
8 | } | ||
9 | |||
10 | tree { | ||
11 | margin-top: 2px; | ||
12 | background: rgb(12,167,0); | ||
13 | color: rgb(255,255,0); | ||
14 | font-size: 90%; | ||
15 | } | ||
16 | tree treechildren { /* for windows */ | ||
17 | background: rgb(12,167,0); | ||
18 | } | ||
19 | |||
20 | tree#uploadlist treechildren::-moz-tree-cell-text(pending) { | ||
21 | } | ||
22 | tree#uploadlist treechildren::-moz-tree-cell-text(completed) { | ||
23 | color: white; | ||
24 | } | ||
25 | tree#uploadlist treechildren::-moz-tree-row(failed) { | ||
26 | background: yellow; | ||
27 | } | ||
28 | tree#uploadlist treechildren::-moz-tree-cell-text(failed) { | ||
29 | color: red; | ||
30 | } | ||
31 | tree#uploadlist treechildren::-moz-tree-cell-text(uploading) { | ||
32 | font-weight: bold; | ||
33 | } | ||
34 | |||
35 | groupbox#searchresult_props, | ||
36 | groupbox.search_params, | ||
37 | groupbox#upload_file_props, | ||
38 | groupbox#set_props, | ||
39 | groupbox#set_photo_props { | ||
40 | background: white; | ||
41 | } | ||
42 | |||
43 | groupbox#upload_file_props label { | ||
44 | text-align: right; | ||
45 | } | ||
46 | |||
47 | image#set_photo, image#set_primary { | ||
48 | border: black 1px solid; | ||
49 | } | ||
50 | |||
51 | .about .insides { | ||
52 | margin: 1ex; | ||
53 | } | ||
54 | .about .text { | ||
55 | border: yellow solid 1px; | ||
56 | background: green; | ||
57 | } | ||
58 | .about .title { | ||
59 | font-size: 300%; | ||
60 | font-weight: bold; | ||
61 | color: yellow; | ||
62 | } | ||
63 | .about .link { | ||
64 | text-decoration: underline; | ||
65 | color: white; | ||
66 | cursor: pointer; | ||
67 | } | ||
68 | |||
69 | menuitem.menuhead { | ||
70 | background: gray; | ||
71 | color: black; | ||
72 | font-weight: bold; | ||
73 | } | ||
74 | |||
75 | label#searchresult_description { | ||
76 | font-weight: bold; | ||
77 | } | ||
78 | textbox#searchresult_description { | ||
79 | padding: 1px 3px !important; | ||
80 | background: white; | ||
81 | } | ||
82 | |||
83 | #copying div { | ||
84 | margin: 1ex 1em; | ||
85 | font-family: courier, monospace; | ||
86 | font-size: 9pt; | ||
87 | padding: 2px; | ||
88 | border: dotted 1px gray; | ||
89 | background: white; | ||
90 | } | ||