]> git.immae.eu Git - github/wallabag/wallabag.git/blame - css/style.css
modif pied de page (on va y arriver avec ce footer ...)
[github/wallabag/wallabag.git] / css / style.css
CommitLineData
c594aedf 1/*** GENERAL ***/
1a268ba7
NL
2body {
3 color: #222222;
4 font: 20px/1.3em Palatino,Georgia,serif;
7eca3552 5 background-color: #F1F1F1;
4d94769a 6 margin: 10px;
7eca3552 7}
8
1a268ba7
NL
9
10a, a:hover, a:visited {
11 color: #000;
12}
c594aedf 13
1a268ba7
NL
14header {
15 text-align: center;
16}
17
1a268ba7
NL
18#main ul#links {
19 padding: 0;
20 list-style-type: none;
21 text-align: center;
22}
23
24#main ul#links li {
25 display: inline;
4d94769a 26}
8784f095 27
28#main ul#links li a.current {
29 -webkit-border-radius: 2px;
30 border-radius: 2px;
31 background-color: #040707;
32 color: #F1F1F1;
33}
34
c594aedf 35#main, #article {
36 margin: 0 auto;
37}
38
598d07a8 39#links a, .backhome a{
4d94769a 40 text-decoration: none;
41 padding: 5px 10px;
42}
d31edfd3 43#links a:hover, .backhome a:hover{
4d94769a 44 -webkit-border-radius: 2px;
45 border-radius: 2px;
46 background-color: #040707;
47 color: #F1F1F1;
1a268ba7
NL
48}
49
c594aedf 50footer {
51 text-align: right;
52}
53
54/*** ***/
55/*** GRID DISPLAY ***/
56
57#content {
c587d27c 58 width: 1000px;
c594aedf 59 margin: 0 auto;
60}
61
62#entries {
c587d27c 63 -moz-column-count: 4;
c594aedf 64 -moz-column-gap: 20px;
c587d27c 65 -webkit-column-count: 4;
c594aedf 66 -webkit-column-gap: 20px;
c587d27c 67 column-count: 4;
c594aedf 68 column-gap: 20px;
c587d27c 69 width: 1000px;
c594aedf 70}
71
72#entries span.content {
73 display: inline-block;
74 margin-bottom: 0px;
75 width: 100%;
76}
77
c587d27c 78@media only screen and (max-width : 1199px),
79only screen and (max-device-width : 1199px){
80 #entries {
81 -moz-column-count: 5;
82 -moz-column-gap: 20px;
83 -webkit-column-count: 5;
84 -webkit-column-gap: 20px;
85 column-count: 5;
86 column-gap: 20px;
87 width: 1000px;
88 }
89
90 #content {
91 width: 1000px;
92 }
93}
94
95
96@media only screen and (max-width : 999px),
97only screen and (max-device-width : 999px){
98 #entries {
99 -moz-column-count: 4;
100 -moz-column-gap: 15px;
101 -webkit-column-count: 4;
102 -webkit-column-gap: 15px;
103 column-count: 4;
104 column-gap: 15px;
105 width: 800px;
106 }
107
108 #content {
109 width: 800px;
110 }
111}
112
113@media only screen and (max-width : 799px),
114only screen and (max-device-width : 799px){
115 #entries {
116 -moz-column-count: 3;
117 -moz-column-gap: 10px;
118 -webkit-column-count: 3;
119 -webkit-column-gap: 10px;
120 column-count: 3;
121 column-gap: 10px;
122 width: 600px;
123 }
124
125 #content {
126 width: 600px;
127 }
128}
129
c594aedf 130@media only screen and (max-width : 599px),
131only screen and (max-device-width : 599px){
132 #entries {
133 -moz-column-count: 2;
134 -moz-column-gap: 10px;
135 -webkit-column-count: 2;
136 -webkit-column-gap: 10px;
137 column-count: 2;
138 column-gap: 10px;
139 width: 400px;
140 }
141
142 #content {
143 width: 400px;
144 }
145}
146
147/*** ***/
148/*** LINKS DISPLAY ***/
149
150#main a.tool {
151 text-decoration: none;
152 cursor: pointer;
153}
154
7eca3552 155#main #entries {
156 margin-top: 20px;
157}
158
159#main #entries .entrie {
160 color: rgb(46, 46, 46);
161 position:relative;
162 background-color: #ffffff;
4d94769a 163 padding: 15px;
884e3856 164 min-height: 6em;
4d94769a 165 -webkit-border-radius: 2px;
166 border-radius: 2px;
167 -webkit-box-shadow: 0px 0px 2px -1px #000;
168 box-shadow: 0px 0px 2px -1px #000;
c594aedf 169 list-style-type: none;
7eca3552 170}
171
172#main #entries .entrie h2 a {
173 text-decoration: none;
174}
175
176#main #entries .entrie h2 a:hover {
177 color: #F5BE00;
178}
179
180#main #entries .entrie .tools {
181 position:absolute;
182 bottom: 0;
183 width: 100%;
184 text-align: right;
4d94769a 185 margin-left: -20px;
7eca3552 186}
187
c594aedf 188#main #entries .entrie .tools a.tool span {
189 display: inline-block;
190 width: 16px;
191 height: 16px;
192}
193
194a.fav span {
195 background: url('../img/fav-on.png') no-repeat;
196}
197
198a.fav-off span {
199 background: url('../img/fav-off.png') no-repeat;
200}
201
202a.archive span {
203 background: url('../img/archive-on.png') no-repeat;
204}
205
206a.archive-off span {
207 background: url('../img/archive-off.png') no-repeat;
208}
209
210a.delete span {
211 background: url('../img/delete.png') no-repeat;
212}
213
214/*** ***/
215/*** ARTICLE PAGE ***/
216
217body.article {
218 color: #222222;
219 font: 20px/1.3em Palatino,Georgia,serif;
220 background-color: #F1F1F1;
221}
222
223#article header {
224 text-align: left;
225 border-bottom: 1px solid #222222;
226}
227
228#article header a {
1a268ba7
NL
229 text-decoration: none;
230}
231
c594aedf 232#article article {
233 border-bottom: 1px solid #222222;
234}
235
236.vieworiginal a {
237 color: #888888;
238 text-decoration: none;
239}
240
241/*** ***/