forked from OUM250/M250-sudoku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.css
65 lines (57 loc) · 1.07 KB
/
master.css
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
html {
background-color: #F0F0F0;
}
body {
margin: 0 auto;
width: 800px;
color: #5f5f5f;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
h1 {
margin: 0px 0px 10px 0px;
border-bottom: 2px solid #d35400;
font-size: 4em;
text-shadow: 2px 2px 2px #817d7d;
}
.createdBy {
top: 0px;
color: white;
float: right;
padding: 5px 10px;
font-size: 1.2em;
background-color: #5f5f5f;
border-radius: 0px 0px 3px 3px;
text-decoration: none;
}
.createdBy:hover {
background-color: #d35400;
}
.tooltip {
position: relative;
float: right;
}
.tooltip .tooltiptext {
/* text */
visibility: hidden;
font-size: 0.8em;
width: 120px;
background-color: #5f5f5f;
color: white;
text-align: center;
padding: 5px;
border-radius: 2px;
opacity : 0;
/* position */
z-index: 1;
position: absolute;
right: 5px;
top: 35px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
transition: opacity 2s;
opacity: 1;
}