forked from dmuth/diceware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdice.css
More file actions
48 lines (38 loc) · 649 Bytes
/
dice.css
File metadata and controls
48 lines (38 loc) · 649 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
.die {
width: 100px;
height: 100px;
background: #ff1111;
border-radius: 10px;
margin-left: 20px;
margin-bottom: 20px;
}
.dot {
position:absolute;
width: 18px;
height: 18px;
border-radius: 18px;
background: white;
box-shadow: inset 5px 0 10px white;
}
.dot.center {
/* Orders of margins are: top right bottom left */
margin: 39px 0 0 41px;
}
.dot.dtop {
margin-top: 14px;
}
.dot.dleft {
margin-left: 65px;
}
.dot.dright {
margin-left: 16px;
}
.dot.dbottom {
margin-top: 63px;
}
.dot.center.dleft {
margin: 38px 0 0 16px;
}
.dot.center.dright {
margin: 38px 0 0 65px;
}