-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (44 loc) · 733 Bytes
/
styles.css
File metadata and controls
52 lines (44 loc) · 733 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
40
41
42
43
44
45
46
47
48
49
50
51
52
body {
margin: 0;
width: 100vw;
height: 100vh;
}
text {
text-anchor: middle;
font: 10px sans-serif;
pointer-events: none;
opacity: 0;
}
circle {
cursor: pointer;
}
img {
width: 200px;
}
a {
color: #FFF;
font-weight: bold;
display: block;
}
span {
display: inline-block;
margin-top: 5px;
padding: 2px 10px;
border-radius: 2px;
font-weight: bold;
font-size: 14px;
}
.html { background: #F16529; }
.css { background: #1C88C7; }
.js { background: #FCC700; }
.tooltip {
position: absolute;
visibility: hidden;
background-color: #111;
display: flex;
font-family: sans-serif;
max-width: 500px;
}
.tooltip div {
padding: 10px;
}