-
Notifications
You must be signed in to change notification settings - Fork 2
/
info.css
55 lines (48 loc) · 813 Bytes
/
info.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
/* info bottom left */
#info {
text-align: left;
color: #fff;
position: absolute;
width: 240px;
padding: 15px;
background: rgba(0, 0, 0, 0.2);
bottom: 50px;
left: 10px;
border-radius: 4px;
display: none;
}
#info.visible {
display: block;
}
#info h1 {
margin: 0 0 10px;
font-size: 20px;
font-weight: 700;
}
#info a {
color: #1ac6ff;
transition: color 0.15s ease-in-out;
}
#info a:hover,
#info a:focus {
color: #81dfff;
}
#info-icon {
position: absolute;
left: 10px;
bottom: 10px;
background: rgba(0, 0, 0, 0.3);
width: 30px;
height: 30px;
font-weight: bold;
text-align: center;
line-height: 30px;
color: #fff;
font-family: monospace;
font-size: 16px;
border-radius: 4px;
}
#info-icon:hover {
cursor: pointer;
background: rgba(0, 0, 0, 0.4);
}