-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
137 lines (120 loc) · 2.58 KB
/
styles.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
.line{
background-color: rgb(243, 239, 234);
width: 90%;
height: 20%;
border-bottom: 2px solid gray;
}
.text{
color:rgba(0, 0, 0, 0);
position: absolute;
}
select{
position: absolute;
}
.scorebox{
border: 4px solid black;
border-radius: 5px;
width: 40px;
height: 20px;
display:inline-block;
position: relative;
margin: 10px;
text-align: center;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.totalbox{
border: 6px solid black;
}
.tooltip{
-ms-transform: translateY(50%);
transform: translateY(50%);
}
.cross {
font-size: 80px;
color: black;
-webkit-text-fill-color: red; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: black;
font-weight: bold;
font-family: helvetica,arial;
line-height: 1;
position: absolute;
-ms-transform: translate(-6%,-25%);
transform: translate(-6%, -25%);
}
.minicross {
font-size: 25px;
color: black;
-webkit-text-fill-color: red; /* Will override color (regardless of order) */
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: black;
font-weight: bold;
font-family: helvetica,arial;
line-height: 1;
position: absolute;
-ms-transform: translate(-6%,-25%);
transform: translate(-6%, -25%);
}
.dice{
border: 3px solid black;
border-radius: 5px;
width: 50px;
height: 50px;
display:inline-block;
position: relative;
margin: 10px;
z-index: 0;
}
.dot{
position: absolute;
background-color: black;
width: 10px;
height: 10px;
border-radius: 5px;
}
.middle{
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%); /* for IE 9 */
-webkit-transform: translate(-50%, -50%); /* for Safari */
}
.topright{
left: 75%;
top: 25%;
transform: translate(-25%, -75%);
-ms-transform: translate(-25%, -75%); /* for IE 9 */
-webkit-transform: translate(-25%, -75%); /* for Safari */
}
.topleft{
left: 5px;
top: 5px;
}
.bottomleft{
left: 5px;
top: 35px;
}
.bottomright{
left: 35px;
top: 35px;
}
.middleleft{
left: 5px;
top: 20px;
}
.middleright{
left: 35px;
top: 20px;
}
.box{
position: absolute;
left: 50px;
top: 15px;
height: 10px;
width: 10px;
border: 2px solid black;
border-radius: 3px;
z-index: 1;
}