1a274a24603efbc57331dc4f6f3a87c5defe6811
[myslice.git] / portal / static / css / registration.css
1 /* Thierry's Note 
2 it seems to me that most of the stuff here is not register-related,
3 but general-purpose settings for an openlab style
4 I've started to move over such stuff in onelab.css
5 feel free to add to this collection
6 */
7    
8 label.error { 
9     float: none;
10     color: red;
11     padding-left: .5em;
12     vertical-align: top; 
13     font-size: 12px; 
14 }
15
16 .form-hint {
17     display:none;
18 }
19 /* show up hints when hovering on a the field */
20 /* pick a small font to avoid flickering effects */
21 div.form-group:hover p.form-hint {
22     display: block;
23     color: #FFFFFF;
24     background: rgba(0, 0, 0, 0.6);
25     padding: 3px 10px;
26     font-size: small;
27     
28     -moz-border-radius: 7px;
29     -webkit-border-radius: 7px;
30     border-radius: 7px;
31 }