]> git.immae.eu Git - github/wallabag/wallabag.git/blob - css/style-dark.css
Merge branch 'dev'
[github/wallabag/wallabag.git] / css / style-dark.css
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 }