Subversion Repositories Applications.reseau

Rev

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

Rev Author Line No. Line
56 mathias 1
/*body {
2
	padding: 10px;
3
}*/
4
 
5
/*#widget {
6
	margin: auto;
7
	max-width: 700px;
8
	padding: 5px;
9
}*/
10
 
11
.vertical-center {
12
	min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
13
	min-height: 100vh;
14
	display: flex;
15
	align-items: center;
16
}
17
 
18
.boite-centre {
19
	width: 480px;
20
	height: 520px;
21
	padding: 20px;
22
	border: solid #f0f0f0 1px;
23
	border-radius: 5px;
24
	margin: auto;
25
	text-align: center;
26
}
27
 
78 mathias 28
.boite-centre.reduite {
29
	height: 450px;
30
}
31
 
56 mathias 32
.boite-centre h1 {
33
	margin-top: 0;
34
	margin-bottom: 0;
35
}
36
 
37
.leger {
38
	color: #808080;
39
}
40
 
41
#nom-complet {
42
	font-size: 1.6em;
43
	margin-left: 5px;
44
}
45
 
46
#liste-applications h2 {
47
	font-size: 1.7em;
48
	margin-top: 30px;
49
	margin-bottom: 15px;
50
}
51
 
52
#liste-applications ul {
53
	/*border: solid red 1px;*/
54
	margin: auto;
55
	margin-top: 10px;
56
	padding: 0;
57
	width: 260px;
58
}
59
 
60
#liste-applications ul li {
61
	margin: 0;
62
	padding: 0;
63
	list-style-type: none;
64
	float: left;
65
	/*border: solid blue 1px;*/
66
}
67
 
68
#liste-applications ul li a, #liste-applications ul li a:hover {
69
	text-decoration: none;
70
}
71
 
72
.bouton-appli {
73
	display: block;
74
	width: 64px;
75
	height: 64px;
76
	margin: 10px;
77
	border: solid #d0d0d0 1px;
78
	border-radius: 5px;
79
	font-size: 1.7em;
80
	line-height: 60px;
81
	color: white;
82
}
83
 
84
.www {
85
	background-color: #478DA7;
86
}
87
.eflore {
88
	background-color: #5EC563;
89
}
90
.cel {
91
	background-color: #66E3F2;
92
}
93
.identiplante {
94
	background-color: #F9EF14;
95
}
96
.pictoflora {
97
	background-color: #F9EF14;
98
}
99
.smartflore {
100
	background-color: #3CE946;
101
}
102
.coel {
103
	background-color: #A79247;
104
}
105
.referentiels {
106
	background-color: #909090;
107
}
108
.wiki {
109
	background-color: #F54521;
110
}
111
 
112
#liste-fournisseurs {
78 mathias 113
	margin-top: 10px;
56 mathias 114
	/*border: solid green 1px;*/
115
	height: 80px;
116
}
117
 
118
#liste-fournisseurs ul {
119
	/*border: solid red 1px;*/
120
	margin: auto;
121
	margin-top: 10px;
122
	padding: 0;
123
	width: 210px;
124
}
125
 
126
#liste-fournisseurs ul li {
127
	margin: 0;
128
	padding: 0;
129
	list-style-type: none;
130
	float: left;
131
	/*border: solid blue 1px;*/
132
}
133
 
134
#liste-fournisseurs ul li a, #liste-fournisseurs ul li a:hover {
135
	text-decoration: none;
136
}
137
#liste-fournisseurs ul li a:focus {
138
	border: none;
139
	outline: none;
140
}
141
 
142
#liste-fournisseurs ul li img {
143
	margin: 5px;
144
}
145
#liste-fournisseurs ul li img.petite {
146
	margin-top: 32px;
147
}
148
#liste-fournisseurs ul li a[data-focus="true"] img.grande {
149
	display: block;
150
}
151
#liste-fournisseurs ul li a[data-focus="false"] img.grande {
152
	display: none;
153
}
154
#liste-fournisseurs ul li a[data-focus="true"] img.petite {
155
	display: none;
156
}
157
#liste-fournisseurs ul li a[data-focus="false"] img.petite {
158
	display: block;
159
}
160
 
161
#info-partenaire {
162
	color: #808080;
78 mathias 163
	margin-bottom: 25px;
56 mathias 164
}
165
 
166
#formulaire-identification {
167
	width: 300px;
168
	height: 260px;
169
	margin: auto;
170
}
171
 
172
#lien-inscription {
173
	float: left;
174
	line-height: 30px;
175
	text-decoration: underline;
176
	margin-left: 5px;
177
}
178
 
179
#bouton-connexion {
180
	float: right;
181
}
182
 
183
.left {
184
	float: left;
185
}
186
 
187
.right {
188
	float: right;
189
}
190
 
191
.info-erreur {
192
	color: red;
193
}