Subversion Repositories Applications.gtt

Rev

Rev 6 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 jpm 1
/*Le corps du site*/
2
body {
3
    background-color:   #EEFFEE;
4
    color:              #000000;
5
    font-family:        verdana, arial, helvetica, sans-serif;
6
    font-size:          0.8em;
7
}
8
 
9
a {
10
    color:              #781007;
11
    text-decoration:    none;
12
    font-weight:        bold;
13
}
14
 
15
/*Quand on passe sur un lien*/
16
a:hover{
17
    background-color:   #eff4fa;
18
    color:              #036;
19
}
20
 
21
/*Bouton submit des formulaires*/
22
form input[type=submit] {
23
    text-align:         center;
24
    background-color:   #fff;
25
    border-color:       #74C054;
26
    border-width:       3px;
27
    border-style:       outset;
28
    margin:             2px;
29
    padding:            3px;
30
}
31
 
32
.zone_titre{
33
    margin-bottom:      0em;
34
    position:           absolute;
35
    top:                0px;
36
    left:               1%;
37
    width:              98%;
38
    text-align:         center;
39
    font-family:        verdana, arial, helvetica, sans-serif;
40
    font-size:          1.6em;
41
    color:              #BB0000;
42
    background-color:   #FFFFFF;
43
    border-color:       #74C054;
44
    border-width:       3px;
45
    border-style:       dotted;
46
    z-index:            2;
47
}
48
 
49
.zone_login{
50
    margin-bottom:      0em;
51
    position:           fixed;
52
    top:                50px;
53
    left:               1%;
54
    width:              98%;
55
    text-align:         center;
56
    font-family:        verdana, arial, helvetica, sans-serif;
57
    font-size:          1em;
58
    color:              black;
59
    background-color:   #FFFFFF;
60
    border-color:       #74C054;
61
    border-width:       3px;
62
    border-style:       dotted;
63
    z-index:            2;
64
}
65
 
66
.zone_menu{
67
    margin-bottom:      1em;
68
    position:           absolute;
69
    top:                50px;
70
    left:               10px;
71
    width:              14%;
72
    z-index:            2;
73
}
74
 
75
html>body .zone_titre {
76
  position: fixed;
77
}
78
 
79
html>body .zone_menu {
80
  position: fixed;
81
}
82
 
83
.zone_contenu {
84
    margin-bottom:      0em;
85
    background-color:   #99CC99;
86
    width:              80%;
87
    margin-top:         50px;
88
    margin-left:        15%;
89
    z-index:            1;
90
}
91
 
92
.zone_menu ul{
93
    padding:            0;
94
    margin:             0;
95
}
96
 
97
.zone_menu li{
98
    list-style:         none;
99
    margin:             0;
100
}
101
 
102
.zone_menu a{
103
    display:            block;
104
    text-decoration:    none;
105
    font-weight:        normal;
106
    color:              #781007;
107
    background-color:   #fff;
108
    border-color:       #74C054;
109
    border-width:       3px;
110
    border-style:       outset;
111
    margin-top:         2px;
112
    margin-bottom:      2px;
113
    margin-right:       1px;
114
    margin-left:        2px;
115
    padding-top:        3px;
116
    padding-bottom:     3px;
117
    padding-right:      10px;
118
    padding-left:       2px;
119
 
120
}
121
 
122
.zone_menu a:hover{
123
    background-color:   #eff4fa;
124
    color:              #036;
125
}
126
 
127
.zone_pieds_page {
128
    text-align:         center;
129
    border-color:       black;
130
    background-color:   #EEFFEE;
131
    margin-bottom:      0em;
132
    bottom:             5px;
133
    margin-left:        15%;
134
    width:              80%;
135
    z-index:            1;
136
    clear:           both;
137
}
138
 
139
/*CLASS permettant d'encadrer : niveau 2 */
140
.cadre_2 {
141
    background-color:   #99CC99;
142
    border-color:       #74C054;
143
    border-width:       2px;
144
    border-style:       dotted;
145
}
146
 
147
/*CLASS permettant d'encadrer : niveau 3 */
148
.cadre_3 {
149
    background-color:   #B8F6B8;
150
    border-color:       #74C054;
151
    border-width:       2px;
152
    border-style:       dotted;
153
    margin-right:       150px;
154
}
155
 
156
/*CLASS pour la balise h2 contenant par exemple le titre 'nom de l'utilissateur' de la fiche donnant les infos sur un utilisateur*/
157
.titre_2 {
158
    font-size:          1.6em;
159
    text-align:        center;
160
    padding:            1px;
161
    margin-top:         0px;
162
    margin-bottom:      0px;
163
}
164
 
165
/*CLASS pour la balise h3 contenant par exemple le titre 'notes' de la fiche donnant les infos sur un utilisateur*/
166
.titre_3 {
167
    font-size:          1em;
168
    text-align:        left;
169
    padding:            1px;
170
    margin-top:         1px;
171
    margin-bottom:      1px;
172
}
173
 
174
/*CLASS pour les liens devant servir de bouton*/
175
.lien_bouton {
176
    color:              black;
177
    font-weight:        normal;
178
    text-align:         center;
179
    background-color:   #FFFFFF;
180
    border-color:       #74C054;
181
    border-width:       3px;
182
    border-style:       outset;
183
    margin:             2px;
184
    padding:            3px;
185
}
186
 
187
/*ID pour la div contenant le calendrier du menu travail*/
188
#calendrier_travail {
189
    background-color:   #FFFFFF;
190
    border-color:       #74C054;
191
    border-width:       2px;
192
    border-style:       dotted;
193
    width:              40%;
194
    float:              left;
195
}
196
 
197
/*ID pour la div contenant le calendrier*/
198
#calendrier {
199
    text-align:         center;
200
    font-family:        verdana, arial, helvetica, sans-serif;
201
    font-size:          1.1em;
202
    color:              #BB0000;
203
}
204
 
205
/*ID pour la div contenant la navigation dans le calendrier du menu travail*/
206
#navigation_calendrier_travail {
207
    text-align:              center;
208
}
209
 
210
/*ID pour la div contenant les actions sur la liste des projets du menu travail*/
211
#liste_projets_travail {
212
    float:              right;
213
}
214
 
215
#non_remplie {
216
    color:              #BB0000;
217
}
218
 
219
/*ID pour la div contenant le jour courant dans le calendrier*/
220
#jourcourant {
221
    color:              #BB0000;
222
    background-color:   #FFFFFF;
223
    border-color:       #74C054;
224
    border-width:       4px;
225
    border-style:       outset;
10 jpm 226
}
227
#calendrier table {background-color: silver;}
228
.selected {
229
    background-color: yellow;
230
}
231
.empty {
232
    color: white;
6 jpm 233
}