-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
230 lines (208 loc) · 9.66 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
@import url(css/font-awesome.min.css); /* feuille de style pour l'utilisation de la police awesone*/
@import url(css/tipTip.css); /* feuille de style pour les infos bulles "title"*/
@import url(css/editor.css); /* feuille de style pour l'éditeur */
/* GENERAL */
html, body {}
body {}
input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="search"], select {
display: block;
width: 210px;
max-width: 100%;
}
input[type="submit"] { width: auto; background: #2ba6cb; border: 1px solid #1e728c; -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; color: white; cursor: pointer; display: inline-block; font-family: inherit; font-size: 14px; font-weight: bold; line-height: 1; margin: 0 0 10px 0; outline: none; padding: 10px 20px 11px; position: relative; text-align: center; text-decoration: none; -webkit-transition: background-color 0.15s ease-in-out; -moz-transition: background-color 0.15s ease-in-out; -o-transition: background-color 0.15s ease-in-out; transition: background-color 0.15s ease-in-out;}
/* LAYOUT */
#main { padding: 0 .5em;}
#wrapper {}
/* HEADER */
@-webkit-keyframes rotater {
0% { -webkit-transform:rotate(0) scale(1) }
50% { -webkit-transform:rotate(360deg) scale(1.1) }
100% { -webkit-transform:rotate(720deg) scale(1) }
}
#top {margin-bottom: 10px;padding: 15px 0 15px 0;border-bottom : #f0f0f0 solid 1px;}
#top_text h1 a {letter-spacing: -1px;text-decoration: none;text-shadow: 1px 1px 2px #aaa;}
#top_text h1 a:hover {
padding-left: .3em;
-webkit-animation-name:rotater;
-webkit-animation-duration:500ms;
-webkit-animation-iteration-count:1;
-webkit-animation-timing-function: ease-out;
-moz-transform:rotate(360deg) scale(1.1);
-moz-transition-duration:500ms;
-moz-transition-timing-function: ease-out;
-o-transform:rotate(360deg) scale(1.1);
-o-transition-duration:500ms;
-o-transition-timing-function: ease-out;
-ms-transform:rotate(360deg) scale(1.1);
-ms-transform-duration:500ms;
-ms-transform-timing-function: ease-out;
}
#top_text h2 {margin-top: -1em;font-size:1.6em; font-style: italic; text-align: right;text-shadow: 1px 1px 2px #aaa;}
#top-link{ display:none; position: fixed; bottom: 5px; right: 5px; opacity: 1; cursor: pointer;}
a#top-link {background: url(images/up.png) no-repeat 0 0; height:48px; width:48px;}
.top-bar {display: none;}
/* SIDEBAR */
#sidebar {}
#sidebar h3 { font-size:1.3em;text-shadow: 1px 1px 2px #aaa;}
#sidebar hr {}
#recherche h3 {}
#navigate h3 {}
#last_comments h3 {}
#tags h3 {}
#liens h3 {}
#rss h3 {}
#rss ul li a {}
#random h3 {}
/* CONTENT */
#contenu {border-right : #f0f0f0 solid 1px;}
/* Last Comments */
.comments_hours {font-weight: normal; font-size: .6em !important; padding-left: 2em;}
.encart_lastcom {list-style-type: none;}
.encart_lastcom li a {font-size: .9em; text-decoration:none; font-style:italic;}
/* search form */
#search {margin-bottom: 20px;border: 1px solid gray;border-radius: 6px;-moz-border-radius: 6px;-webkit-border: 6px;box-shadow: 1px 1px 2px silver; width: 237px;}
#search input { margin-bottom: 0; display: inline-block;}
#q {padding: 2px 0;box-shadow: none; border-radius: 6px;-moz-border-radius: 6px;-webkit-border: 6px;border-width: 0;text-align: left;width: 140px;}
#input-rechercher { /* submit*/ width: 90px; font-size:.9em;}
/* Calendar */
#calendrier {display: block;border: none;}
#calendrier caption {font-size: 1.3em;padding: 4px;font-weight: bold;}
#calendrier caption a {font-weight: bold;text-decoration: none;}
#calendrier td {text-align: center;width: 40px;line-height: 2em; padding:0;}
#calendrier td a {display: block;text-decoration: none;border-width: 1px 0 0 1px;font-weight: bold;}
#calendrier td a:hover {border-width: 0 1px 1px 0;}
#calendrier td.active a {}
#calendrier abbr {border-bottom: none;cursor: auto;}
/* Tags */
#tags ul li {display: inline; padding: 3px;list-style-type: none;font-size:1.1em;}
#tags ul li a { }
#tags li a:hover {}
#tags li a:nth-child(2n):hover { }
/* Others links */
#liens ul li a {}
#liens ul li a:hover {}
/* Random news */
#random a {}
#random a:hover {}
/* CONTENU */
.news, .lien, .comment {margin: 0 10px 20px 0;word-wrap: break-word;overflow: show;}
.news pre, .comment pre, .lien pre { white-space: pre-wrap;}
/* article de blog */
.news h2, .lien h2, .comment h2 {font-size:1.6em;text-shadow: 1px 1px 2px #aaa;}
.news h3, .lien h3, .comment h3 {font-size:1.3em;text-shadow: 1px 1px 2px #aaa;}
.news p {text-align: justify;}
.chapo {}
.permalien, .tagss {text-align: right;}
header.titre {}
header.titre a {text-decoration: none;}
header.titre a:hover {text-decoration: underline;}
h3 img {vertical-align: middle;}
p.date {font-size:.9em; font-style:italic;}
p.tags {font-size:.9em;}
p.rss {}
.post a:visited {}
.tags {/* clear: both;*/ /* at bottom of article, must clear. */}
.tags img {vertical-align: middle;}
.img { display: block; margin: 0 auto;}
.news img, .news iframe, .news video {padding: 4px;background: #fff;box-shadow: 0 1px 2px rgba(0,0,0,.2);border: solid 1px #bbb;max-width: 100%;}
.news figure {display:block;float: right;margin: 5px 0 5px 10px; padding:10px; text-align: center; background: #ddd; border-radius:7px;-moz-border-radius: 7px;-webkit-border: 7px;box-shadow: 0 1px 2px rgba(0,0,0,.2);}
.news figcaption {color: #333;font-size: .8em; font-style: italic;}
#nombre_comment {font-weight: bold; font-size: 1.1em; text-align: right;}
.pagination a, .pagination a:visited {text-decoration:none;}
.pagination a:hover {text-decoration: underline;}
.pagination {padding-top: 10px; font-size: 1.25em; text-align: center;}
/* Last Comments page */
.comment {
margin-bottom: 20px;
padding: 25px 0 0 25px;
border-left : #f0f0f0 solid 1px;
border-bottom : #f0f0f0 solid 1px;
border-radius : 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.comment h2 span, .comment h3 span { font-size: .7em; font-style:italic; }
.gravatar-icon {height: 24px;width: 24px;vertical-align: middle;display: inline-block;}
.com-reply {text-align: right;}
.com-reply a {font-style: italic;padding: 0 4px 2px 4px;}
/* Form Comments */
#form-commentaire {width:95%;margin: 0 auto;}
#form-commentaire fieldset {border: none; margin: 0; padding: 0;}
#form-commentaire .infos {text-align: right;width: 100%;margin: 10px auto;}
#form-commentaire fieldset.infos input {margin-top: 2px;-moz-border-radius: 5px;-webkit-border-radius: 5px;padding: 3px;}
#form-commentaire input:focus {}
.formatbut button {margin-bottom:0;}
.infos label, .infos input, .cookie label, .cookie input {display: inline-block;}
fieldset.buttons {text-align: center;}
.buttons input{ margin-top: 10px;}
.cookie label {font-size: .9em; font-style:italic;}
/* FOOTER */
#footer-page {margin-top: 10px; padding: 10px 0 20px 0; font-size:.9em; text-align: center; border-top : #f0f0f0 solid 1px;}
footer a, footer a:visited { }
#social-box {text-align: center; padding: 5px 0 5px 0;}
#social-box a {font-size:1.3em; padding-right: 15px; text-decoration: none; opacity:.5;}
#social-box a:hover {opacity: 1;}
/* OVERRIDE */
::selection {background:#ddd; color:inherit;}
::-moz-selection {background:#ddd; color:inherit;}
::-webkit-selection {background:#ddd; color:inherit;}
ul.side-nav {padding: 0; }
ul.side-nav li { margin: 0; padding-bottom:5px; }
/* OTHERS */
#erreurs {
background-color: rgba(255, 0, 0, .3);
padding: 1px;
color: white;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
box-shadow: 2px 2px 10px rgba(102, 102, 102, .5);
-moz-box-shadow: 2px 2px 10px rgba(102, 102, 102, .5) ;
-webkit-box-shadow: 2px 2px 10px rgba(102, 102, 102, .5);
}
/* to delete afterwards... */
.one { float: right; margin: 15px; }
#email-adress {display: none;}
/* MEDIA QUERIES */
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
#top_text {display: none;}
.top-bar {display: inline-block;}
#topmenu form {margin-bottom: 0;}
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
body {font: 12px/18px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;;}
a#top-link {background: url(images/up_small.png) no-repeat 0 0; height:24px; width:24px;}
#top_text {display: none;}
.top-bar {display: inline-block;}
#topmenu form {margin-bottom: 0;}
}
/* Print Styles */
@media print {
* {background: none !important;color: black !important;box-shadow: none !important;text-shadow: none !important;
/* Images, vectors and such */
filter: Gray(); /* IE4-8: depreciated */
filter: url('desaturate.svg#grayscale'); /* SVG version for IE10, Firefox, Safari 5 and Opera */
-webkit-filter: grayscale(100%); /* Chrome + Safari 6 */
-moz-filter: grayscale(100%); /* Future proof */
-ms-filter: grayscale(100%); /* Future proof */
-o-filter: grayscale(100%); /* Future proof */
filter: grayscale(100%); /* Future proof or polyfilled */
}
a { text-decoration: underline;}
a[href]:after {content: " (" attr(href) ")";}
a[href="#"], a[href="javascript:"] { content: "";}
}
/* Assets for retina display */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2) {
}