diff options
Diffstat (limited to 'css/style-light.css')
-rw-r--r-- | css/style-light.css | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/css/style-light.css b/css/style-light.css deleted file mode 100644 index cd2384c3..00000000 --- a/css/style-light.css +++ /dev/null | |||
@@ -1,100 +0,0 @@ | |||
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 | .bouton { | ||
12 | background-color: #000; | ||
13 | color: #fff; | ||
14 | border: none; | ||
15 | } | ||
16 | .bouton:hover { | ||
17 | background-color: #222222; | ||
18 | color: #F1F1F1; | ||
19 | } | ||
20 | |||
21 | #main ul#links li a.current { | ||
22 | background-color: #000; | ||
23 | color: #fff; | ||
24 | } | ||
25 | |||
26 | #links a:hover, .backhome a:hover{ | ||
27 | background-color: #040707; | ||
28 | color: #F1F1F1; | ||
29 | } | ||
30 | |||
31 | input[type=submit].delete { | ||
32 | background : url('../img/light/remove.png') no-repeat center center; | ||
33 | color : transparent; | ||
34 | } | ||
35 | |||
36 | #main .entrie { | ||
37 | color: #2e2e2e; | ||
38 | background-color: #ffffff; | ||
39 | border: 1px solid #000; | ||
40 | } | ||
41 | |||
42 | #main .entrie h2 a:hover { | ||
43 | color: #F5BE00; | ||
44 | } | ||
45 | |||
46 | a.fav span { | ||
47 | background: url('../img/light/star-on.png') no-repeat; | ||
48 | } | ||
49 | |||
50 | a.fav span:hover { | ||
51 | background: url('../img/light/star-off.png') no-repeat; | ||
52 | } | ||
53 | |||
54 | a.fav-off span { | ||
55 | background: url('../img/light/star-off.png') no-repeat; | ||
56 | } | ||
57 | |||
58 | a.fav-off span:hover { | ||
59 | background: url('../img/light/star-on.png') no-repeat; | ||
60 | } | ||
61 | |||
62 | a.archive span { | ||
63 | background: url('../img/light/checkmark-on.png') no-repeat; | ||
64 | } | ||
65 | |||
66 | a.archive span:hover { | ||
67 | background: url('../img/light/checkmark-off.png') no-repeat; | ||
68 | } | ||
69 | |||
70 | a.archive-off span { | ||
71 | background: url('../img/light/checkmark-off.png') no-repeat; | ||
72 | } | ||
73 | |||
74 | a.archive-off span:hover { | ||
75 | background: url('../img/light/checkmark-on.png') no-repeat; | ||
76 | } | ||
77 | |||
78 | /*** ***/ | ||
79 | /*** ARTICLE PAGE ***/ | ||
80 | |||
81 | body.article { | ||
82 | color: #222222; | ||
83 | background-color: #F1F1F1; | ||
84 | } | ||
85 | |||
86 | #article header { | ||
87 | border-bottom: 1px solid #222222; | ||
88 | } | ||
89 | |||
90 | #article article { | ||
91 | border-bottom: 1px solid #222222; | ||
92 | } | ||
93 | |||
94 | .vieworiginal a { | ||
95 | color: #888888; | ||
96 | } | ||
97 | |||
98 | .entrie { | ||
99 | background-color: #fff; | ||
100 | } | ||