forked from eQualityTime/TheOpenVoiceFactory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhite.css
More file actions
39 lines (38 loc) · 612 Bytes
/
white.css
File metadata and controls
39 lines (38 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
img{
display: block;
margin-left: auto;
margin-right: auto;
}
div#columns {
position: relative;
width: 750px;
top: 20px;
margin-left: auto ;
margin-right: auto ;
}
.button {
padding:1em;
position:relative;
}
.button:hover {
cursor:pointer;
}
.button[disabled]:before {
content:attr(data-tooltip);
position:absolute;
left:75%;
opacity:0;
top:0;
width:auto;
white-space: nowrap;
margin-left:1em;
display:block;
padding:1em;
border:1px solid grey;
background:white;
transition:all 0.3s;
}
.button[disabled]:hover:before {
left:100%;
opacity:1;
}