-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoken.css
More file actions
33 lines (29 loc) · 684 Bytes
/
token.css
File metadata and controls
33 lines (29 loc) · 684 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
.token {
display: inline-block;
border-radius: 50%;
width: 4vmin;
height: 4vmin;
}
.token-green {
background-color: limegreen;
box-shadow: inset 0 0.7vmin lightgreen, inset 0 -0.7vmin darkgreen;
position: absolute;
top: 15%;
left: 15%;
}
.token-yellow {
z-index: 1;
background-color: yellow;
box-shadow: inset 0 0.7vmin lightyellow, inset 0 -0.7vmin orange;
}
.token-red {
background-color: red;
box-shadow: inset 0 0.4vmin pink, inset 0 -0.4vmin darkred;
position: absolute;
top: 10%;
left: 10%;
}
.token-blue {
background-color: blue;
box-shadow: inset 0 0.4vmin lightblue, inset 0 -0.4vmin darkblue;
}