diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2013-04-21 10:53:22 -0700 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2013-04-21 10:53:22 -0700 |
commit | 37c6ed4e7a75238504a28d6be5fbaad475689526 (patch) | |
tree | 69bfdf8ddbc09467be830274f434190b42979aa1 /css | |
parent | ff4d8c8c1efca0759330906419cb5f36de86d156 (diff) | |
parent | f0070a15e4725255dad967bde76155a39d189631 (diff) | |
download | wallabag-37c6ed4e7a75238504a28d6be5fbaad475689526.tar.gz wallabag-37c6ed4e7a75238504a28d6be5fbaad475689526.tar.zst wallabag-37c6ed4e7a75238504a28d6be5fbaad475689526.zip |
Merge pull request #67 from inthepoche/dev
tag 0.2
Diffstat (limited to 'css')
-rw-r--r-- | css/style-dark.css | 90 | ||||
-rw-r--r-- | css/style-light.css | 90 | ||||
-rw-r--r-- | css/style.css | 74 |
3 files changed, 196 insertions, 58 deletions
diff --git a/css/style-dark.css b/css/style-dark.css new file mode 100644 index 00000000..813c291d --- /dev/null +++ b/css/style-dark.css | |||
@@ -0,0 +1,90 @@ | |||
1 | /*** GENERAL ***/ | ||
2 | body { | ||
3 | color: #fff; | ||
4 | background-color: #0d0d0d; | ||
5 | } | ||
6 | |||
7 | a, a:hover, a:visited { | ||
8 | color: #fff; | ||
9 | } | ||
10 | |||
11 | #main ul#links li a.current { | ||
12 | background-color: #000; | ||
13 | color: #fff; | ||
14 | } | ||
15 | |||
16 | #links a:hover, .backhome a:hover{ | ||
17 | background-color: #fff; | ||
18 | color: #000; | ||
19 | } | ||
20 | |||
21 | input[type=submit].delete { | ||
22 | background : url('../img/dark/remove.png') no-repeat center center; | ||
23 | color : transparent; | ||
24 | } | ||
25 | |||
26 | #main .entrie { | ||
27 | color: #fff; | ||
28 | background-color: #000; | ||
29 | border: 1px solid #fff; | ||
30 | } | ||
31 | |||
32 | #main .entrie h2 a:hover { | ||
33 | color: #29B1E3; | ||
34 | } | ||
35 | |||
36 | a.fav span { | ||
37 | background: url('../img/dark/star-on.png') no-repeat; | ||
38 | } | ||
39 | |||
40 | a.fav span:hover { | ||
41 | background: url('../img/dark/star-off.png') no-repeat; | ||
42 | } | ||
43 | |||
44 | a.fav-off span { | ||
45 | background: url('../img/dark/star-off.png') no-repeat; | ||
46 | } | ||
47 | |||
48 | a.fav-off span:hover { | ||
49 | background: url('../img/dark/star-on.png') no-repeat; | ||
50 | } | ||
51 | |||
52 | a.archive span { | ||
53 | background: url('../img/dark/checkmark-on.png') no-repeat; | ||
54 | } | ||
55 | |||
56 | a.archive span:hover { | ||
57 | background: url('../img/dark/checkmark-off.png') no-repeat; | ||
58 | } | ||
59 | |||
60 | a.archive-off span { | ||
61 | background: url('../img/dark/checkmark-off.png') no-repeat; | ||
62 | } | ||
63 | |||
64 | a.archive-off span:hover { | ||
65 | background: url('../img/dark/checkmark-on.png') no-repeat; | ||
66 | } | ||
67 | |||
68 | /*** ***/ | ||
69 | /*** ARTICLE PAGE ***/ | ||
70 | |||
71 | body.article { | ||
72 | color: #fff; | ||
73 | background-color: #0d0d0d; | ||
74 | } | ||
75 | |||
76 | #article header { | ||
77 | border-bottom: 1px solid #222222; | ||
78 | } | ||
79 | |||
80 | #article article { | ||
81 | border-bottom: 1px solid #222222; | ||
82 | } | ||
83 | |||
84 | .vieworiginal a { | ||
85 | color: #888888; | ||
86 | } | ||
87 | |||
88 | .entrie { | ||
89 | background-color: #fff; | ||
90 | } | ||
diff --git a/css/style-light.css b/css/style-light.css new file mode 100644 index 00000000..5b9c6c11 --- /dev/null +++ b/css/style-light.css | |||
@@ -0,0 +1,90 @@ | |||
1 | /*** GENERAL ***/ | ||
2 | body { | ||
3 | color: #222222; | ||
4 | background-color: #F1F1F1; | ||
5 | } | ||
6 | |||
7 | a, a:hover, a:visited { | ||
8 | color: #000; | ||
9 | } | ||
10 | |||
11 | #main ul#links li a.current { | ||
12 | background-color: #000; | ||
13 | color: #fff; | ||
14 | } | ||
15 | |||
16 | #links a:hover, .backhome a:hover{ | ||
17 | background-color: #040707; | ||
18 | color: #F1F1F1; | ||
19 | } | ||
20 | |||
21 | input[type=submit].delete { | ||
22 | background : url('../img/light/remove.png') no-repeat center center; | ||
23 | color : transparent; | ||
24 | } | ||
25 | |||
26 | #main .entrie { | ||
27 | color: #2e2e2e; | ||
28 | background-color: #ffffff; | ||
29 | border: 1px solid #000; | ||
30 | } | ||
31 | |||
32 | #main .entrie h2 a:hover { | ||
33 | color: #F5BE00; | ||
34 | } | ||
35 | |||
36 | a.fav span { | ||
37 | background: url('../img/light/star-on.png') no-repeat; | ||
38 | } | ||
39 | |||
40 | a.fav span:hover { | ||
41 | background: url('../img/light/star-off.png') no-repeat; | ||
42 | } | ||
43 | |||
44 | a.fav-off span { | ||
45 | background: url('../img/light/star-off.png') no-repeat; | ||
46 | } | ||
47 | |||
48 | a.fav-off span:hover { | ||
49 | background: url('../img/light/star-on.png') no-repeat; | ||
50 | } | ||
51 | |||
52 | a.archive span { | ||
53 | background: url('../img/light/checkmark-on.png') no-repeat; | ||
54 | } | ||
55 | |||
56 | a.archive span:hover { | ||
57 | background: url('../img/light/checkmark-off.png') no-repeat; | ||
58 | } | ||
59 | |||
60 | a.archive-off span { | ||
61 | background: url('../img/light/checkmark-off.png') no-repeat; | ||
62 | } | ||
63 | |||
64 | a.archive-off span:hover { | ||
65 | background: url('../img/light/checkmark-on.png') no-repeat; | ||
66 | } | ||
67 | |||
68 | /*** ***/ | ||
69 | /*** ARTICLE PAGE ***/ | ||
70 | |||
71 | body.article { | ||
72 | color: #222222; | ||
73 | background-color: #F1F1F1; | ||
74 | } | ||
75 | |||
76 | #article header { | ||
77 | border-bottom: 1px solid #222222; | ||
78 | } | ||
79 | |||
80 | #article article { | ||
81 | border-bottom: 1px solid #222222; | ||
82 | } | ||
83 | |||
84 | .vieworiginal a { | ||
85 | color: #888888; | ||
86 | } | ||
87 | |||
88 | .entrie { | ||
89 | background-color: #fff; | ||
90 | } | ||
diff --git a/css/style.css b/css/style.css index 29dca289..36ebf85d 100644 --- a/css/style.css +++ b/css/style.css | |||
@@ -1,16 +1,10 @@ | |||
1 | /*** GENERAL ***/ | 1 | /*** GENERAL ***/ |
2 | body { | 2 | body { |
3 | color: #222222; | ||
4 | font: 20px/1.3em Palatino,Georgia,serif; | 3 | font: 20px/1.3em Palatino,Georgia,serif; |
5 | background-color: #F1F1F1; | ||
6 | margin: 10px; | 4 | margin: 10px; |
7 | } | 5 | } |
8 | 6 | ||
9 | 7 | ||
10 | a, a:hover, a:visited { | ||
11 | color: #000; | ||
12 | } | ||
13 | |||
14 | header { | 8 | header { |
15 | text-align: center; | 9 | text-align: center; |
16 | } | 10 | } |
@@ -28,8 +22,6 @@ header { | |||
28 | #main ul#links li a.current { | 22 | #main ul#links li a.current { |
29 | -webkit-border-radius: 2px; | 23 | -webkit-border-radius: 2px; |
30 | border-radius: 2px; | 24 | border-radius: 2px; |
31 | background-color: #040707; | ||
32 | color: #F1F1F1; | ||
33 | } | 25 | } |
34 | 26 | ||
35 | #main ul#sort { | 27 | #main ul#sort { |
@@ -58,8 +50,6 @@ header { | |||
58 | #links a:hover, .backhome a:hover{ | 50 | #links a:hover, .backhome a:hover{ |
59 | -webkit-border-radius: 2px; | 51 | -webkit-border-radius: 2px; |
60 | border-radius: 2px; | 52 | border-radius: 2px; |
61 | background-color: #040707; | ||
62 | color: #F1F1F1; | ||
63 | } | 53 | } |
64 | 54 | ||
65 | footer { | 55 | footer { |
@@ -80,11 +70,9 @@ ul#login li { | |||
80 | } | 70 | } |
81 | 71 | ||
82 | input[type=submit].delete { | 72 | input[type=submit].delete { |
83 | background : url('../img/remove.png') no-repeat center center; | ||
84 | width : 16px; | 73 | width : 16px; |
85 | height :16px; | 74 | height :16px; |
86 | border : none; | 75 | border : none; |
87 | color : transparent; | ||
88 | cursor: pointer; | 76 | cursor: pointer; |
89 | font-size : 0; | 77 | font-size : 0; |
90 | } | 78 | } |
@@ -94,8 +82,6 @@ input[type=submit].delete { | |||
94 | } | 82 | } |
95 | 83 | ||
96 | #main .entrie { | 84 | #main .entrie { |
97 | color: rgb(46, 46, 46); | ||
98 | background-color: #ffffff; | ||
99 | padding: 15px; | 85 | padding: 15px; |
100 | min-height: 8em; | 86 | min-height: 8em; |
101 | border: 1px solid; | 87 | border: 1px solid; |
@@ -105,10 +91,6 @@ input[type=submit].delete { | |||
105 | text-decoration: none; | 91 | text-decoration: none; |
106 | } | 92 | } |
107 | 93 | ||
108 | #main .entrie h2 a:hover { | ||
109 | color: #F5BE00; | ||
110 | } | ||
111 | |||
112 | .tools { | 94 | .tools { |
113 | text-align: right; | 95 | text-align: right; |
114 | } | 96 | } |
@@ -145,62 +127,23 @@ input[type=submit].delete { | |||
145 | height: 16px; | 127 | height: 16px; |
146 | } | 128 | } |
147 | 129 | ||
148 | a.fav span { | ||
149 | background: url('../img/star-on.png') no-repeat; | ||
150 | } | ||
151 | |||
152 | a.fav span:hover { | ||
153 | background: url('../img/star-off.png') no-repeat; | ||
154 | } | ||
155 | |||
156 | a.fav-off span { | ||
157 | background: url('../img/star-off.png') no-repeat; | ||
158 | } | ||
159 | |||
160 | a.fav-off span:hover { | ||
161 | background: url('../img/star-on.png') no-repeat; | ||
162 | } | ||
163 | |||
164 | a.archive span { | ||
165 | background: url('../img/checkmark-on.png') no-repeat; | ||
166 | } | ||
167 | |||
168 | a.archive span:hover { | ||
169 | background: url('../img/checkmark-off.png') no-repeat; | ||
170 | } | ||
171 | |||
172 | a.archive-off span { | ||
173 | background: url('../img/checkmark-off.png') no-repeat; | ||
174 | } | ||
175 | |||
176 | a.archive-off span:hover { | ||
177 | background: url('../img/checkmark-on.png') no-repeat; | ||
178 | } | ||
179 | 130 | ||
180 | /*** ***/ | 131 | /*** ***/ |
181 | /*** ARTICLE PAGE ***/ | 132 | /*** ARTICLE PAGE ***/ |
182 | 133 | ||
183 | body.article { | 134 | body.article { |
184 | color: #222222; | ||
185 | font: 20px/1.3em Palatino,Georgia,serif; | 135 | font: 20px/1.3em Palatino,Georgia,serif; |
186 | background-color: #F1F1F1; | ||
187 | } | 136 | } |
188 | 137 | ||
189 | #article header { | 138 | #article header { |
190 | text-align: left; | 139 | text-align: left; |
191 | border-bottom: 1px solid #222222; | ||
192 | } | 140 | } |
193 | 141 | ||
194 | #article header a { | 142 | #article header a { |
195 | text-decoration: none; | 143 | text-decoration: none; |
196 | } | 144 | } |
197 | 145 | ||
198 | #article article { | ||
199 | border-bottom: 1px solid #222222; | ||
200 | } | ||
201 | |||
202 | .vieworiginal a { | 146 | .vieworiginal a { |
203 | color: #888888; | ||
204 | text-decoration: none; | 147 | text-decoration: none; |
205 | } | 148 | } |
206 | 149 | ||
@@ -256,4 +199,19 @@ body.article { | |||
256 | } | 199 | } |
257 | } | 200 | } |
258 | 201 | ||
259 | 202 | /*** ***/ | |
203 | /*** MESSAGES ***/ | ||
204 | |||
205 | .messages { width: 100%; -moz-border-radius: 4px; border-radius: 4px; display: block; padding: 10px 0; margin: 10px auto 10px; clear: both; } | ||
206 | .messages a.closeMessage { margin: -14px -8px 0 0; display:none; width: 16px; height: 16px; float: right; background: url(../img/messages/close.png) no-repeat; } | ||
207 | /*.messages:hover a.closeMessage { visibility:visible; }*/ | ||
208 | .messages p { margin: 3px 0 3px 10px !important; padding: 0 10px 0 23px !important; font-size: 14px; line-height: 16px; } | ||
209 | .messages.error { border: 1px solid #C42608; color: #c00 !important; background: #FFF0EF; } | ||
210 | .messages.error p { background: url(../img/messages/cross.png ) no-repeat 0px 50%; color:#c00 !important; } | ||
211 | .messages.success {background: #E0FBCC; border: 1px solid #6DC70C; } | ||
212 | .messages.success p { background: url(../img/messages/tick.png) no-repeat 0px 50%; color: #2B6301 !important; } | ||
213 | .messages.warning { background: #FFFCD3; border: 1px solid #EBCD41; color: #000; } | ||
214 | .messages.warning p { background: url(../img/messages/warning.png ) no-repeat 0px 50%; color: #5F4E01; } | ||
215 | .messages.information, .messages.info { background: #DFEBFB; border: 1px solid #82AEE7; } | ||
216 | .messages.information p, .messages.info p { background: url(../img/messages/help.png ) no-repeat 0px 50%; color: #064393; } | ||
217 | .messages.information a { text-decoration: underline; } \ No newline at end of file | ||