diff options
Diffstat (limited to 'public/css/main.css')
-rw-r--r-- | public/css/main.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/public/css/main.css b/public/css/main.css index 4017e31..a5332be 100644 --- a/public/css/main.css +++ b/public/css/main.css | |||
@@ -136,6 +136,33 @@ form | |||
136 | /*border-bottom: 1px black solid;*/ | 136 | /*border-bottom: 1px black solid;*/ |
137 | } | 137 | } |
138 | 138 | ||
139 | .infobulle | ||
140 | { | ||
141 | text-decoration: none; | ||
142 | /* évite que l'infobulle ne se retrouve dans un coin de l'écran */ | ||
143 | position:relative; | ||
144 | /* block -> hauteur fixe pour vertical-align dans l'image */ | ||
145 | display: inline-block; | ||
146 | |||
147 | } | ||
148 | .infobulle button | ||
149 | { | ||
150 | |||
151 | display: none; | ||
152 | position: absolute; | ||
153 | bottom: 35px; | ||
154 | left: 10px; | ||
155 | } | ||
156 | .infobulle:hover button | ||
157 | { | ||
158 | display: inline; | ||
159 | |||
160 | } | ||
161 | .infobulle img | ||
162 | { | ||
163 | vertical-align: middle; | ||
164 | } | ||
165 | |||
139 | #courriel | 166 | #courriel |
140 | { | 167 | { |
141 | /*padding-top: 30px;*/ | 168 | /*padding-top: 30px;*/ |