Subversion Repositories Applications.papyrus

Rev

Rev 1610 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
/*--------------------------------------------------------------------------------------------------------------*/
2
/* Structure de la page */
1590 florian 3
 
2150 mathias 4
#zone_bandeau {
5
    position : absolute;
6
    top: 0%;
7
    left: 0%;
8
    width: 100%;
9
    height: 60px;
10
}
1590 florian 11
 
2150 mathias 12
#logo {
13
    float : left;
14
    height: 20%;
15
    width: 20%;
16
}
1590 florian 17
 
2150 mathias 18
#site_nom {
19
    position : absolute;
20
    top: 0px;
21
    left: 100px;
22
    width: 40%;
23
    height: 5%;
24
    line-height: 5%;
25
}
1590 florian 26
 
2150 mathias 27
#menus_communs {
28
    position : absolute;
29
    bottom: 0px;
30
    left: 100px;
31
    margin: 0%;
32
    padding: 0%;
33
}
1590 florian 34
 
2150 mathias 35
#menus_communs li {
36
    display: inline;
37
    line-height: 5%;
38
}
1590 florian 39
 
2150 mathias 40
#accessibilite {
41
    position : absolute;
42
    bottom: 0px;
43
    right: 0px;
44
    width: 40%;
45
    margin: 0%;
46
    padding: 0%;
47
    text-align: right;
1590 florian 48
}
2150 mathias 49
 
50
#accessibilite li {
51
    display: inline;
52
    line-height: 5%;
1590 florian 53
}
2150 mathias 54
 
55
#selecteur_monde {
56
    position : absolute;
57
    top: 0%;
58
    right: 0%;
59
    height: 10%;
60
    width: 40%;
61
    text-align: right;
1590 florian 62
}
63
 
2150 mathias 64
#selecteur_monde legend {
65
    display: none;
66
}
1590 florian 67
 
2150 mathias 68
#selecteur_monde fieldset {
69
    border: 0px;
70
    margin: 1px;
71
    padding: 1px;
72
    text-align: right;
73
}
74
 
75
#moteur_recherche {
76
    position : absolute;
77
    top: 10%;
78
    right: 0%;
79
    height: 10%;
80
    width: 40%;
81
    text-align: right;
82
}
83
 
84
#zone_menu {
85
    position : absolute;
86
    top: 60px;
87
    left: 0%;
88
    width: 20%;
89
    margin: 5px 0px 50px 5px;
90
    padding: 5px 0px 50px 5px;
91
}
92
 
93
#zone_menu #menu_n1 {
94
    margin: 0px 0px 0px 5px;
95
    padding: 0px 0px 0px 0px;
1590 florian 96
    text-align: left;
97
}
2150 mathias 98
 
99
#zone_menu #menu_n2 {
100
    margin: 0px 0px 0px 10px;
101
    padding: 0px 0px 0px 0px;
102
    text-align: left;
1590 florian 103
}
2150 mathias 104
 
105
#zone_menu #menu_n3 {
106
    margin: 0px 0px 0px 10px;
107
    padding: 0px 0px 0px 0px;
108
    text-align: left;
1590 florian 109
}
110
 
2150 mathias 111
#zone_menu #identification {
112
    width: 100%;
1590 florian 113
}
114
 
2150 mathias 115
#identification fieldset {
116
    border: 0px;
117
    margin: 1px;
118
    padding: 1px;
1590 florian 119
}
120
 
2150 mathias 121
#identification legend {
122
    display: none;
123
}
1590 florian 124
 
2150 mathias 125
#identification p {
126
    margin: 0%;
127
    padding: 0%;
128
}
1590 florian 129
 
2150 mathias 130
#identification label {
131
    display: block;
132
}
1590 florian 133
 
2150 mathias 134
#zone_contenu {
135
    position : absolute;
136
    top: 60px;
137
    right: 0%;
138
    width: 75%;
139
    margin: 5px 5px 5px 5px;
140
    padding: 5px 5px 5px 5px;
141
}
1590 florian 142
 
2150 mathias 143
#zone_contenu #zone_pied p {
144
    text-align: center;
145
}
1590 florian 146
 
2150 mathias 147
/*--------------------------------------------------------------------------------------------------------------*/
148
/* Décoration */
1610 florian 149
 
2150 mathias 150
body {
151
    font-size: 90%;
152
    font-family: arial, verdana, sans-serif;
153
    color:black;
154
    background-color: white;
155
    margin: 0px 0px 0px 0px;
156
}
157
 
158
h1 {
159
    font-size: 2em;
160
    color:black;
161
    background-color:transparent;
162
    text-align:left;
163
}
164
 
165
h2 {
166
    font-size: 1.8em;
167
    color:black;
168
    background-color:transparent;
169
    text-align:left;
170
}
171
 
172
h3 {
173
    font-size: 1.6em;
174
    color:black;
175
    background-color:transparent;
176
    text-align:left;
177
}
178
 
179
p {
180
    background-color:transparent;
181
    text-align:left;
182
    margin-left:0px;
183
    margin-right:0px;
184
}
185
 
186
form ul {
187
    list-style-type: none;
188
}
189
 
190
li {
191
    background-color:transparent;
192
    text-align:left;
193
    margin-left:0px;
194
    margin-right:0px;
195
}
196
 
197
a {
198
    font-weight: bold;
199
    color: black;
200
    background-color:transparent;
201
    text-decoration:none;
202
}
203
 
204
a:link {
205
    color: blue;
206
}
207
 
208
a:visited {
209
    color: #8b008b;
210
}
211
 
212
a:hover {
213
    background-color: #ffd700;
214
}
215
 
216
table {
217
    border-color:transparent;
218
    border-style:solid;
219
    border-width:1px;
220
}
221
 
222
td {
223
    text-align:left;
224
    background-color:transparent;
225
    border-color:transparent;
226
    border-style:solid;
227
    border-width:1px;
228
}
229
 
230
#zone_bandeau {
231
    border: 1px dashed red;
232
}
233
 
234
#zone_bandeau #logo h1 {
235
    font-size: 1em;
236
}
237
 
238
#zone_menu {
239
    border: 1px dashed blue;
240
}
241
 
242
#zone_menu ul {
243
    font-size: 100%;
244
    list-style-type: none;
245
}
246
 
247
#zone_contenu {
248
    border: 1px dashed green;
249
}
250
 
251
/*--------------------------------------------------------------------------------------------------------------*/
252
/* Camouflage du tableau de chronométrage */
253
 
254
#chrono {
255
    display: none;
256
}