-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
123 lines (104 loc) · 1.85 KB
/
style.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
* {
box-sizing: border-box;
background-color: black;
font-family: 'Lato', sans-serif;
}
#container {
margin: 5em auto 5em auto;
width: 30em;
height: 30em;
-webkit-transform : rotate(0deg);
-moz-transform : rotate(0deg);
-ms-transform : rotate(0deg);
-o-transform : rotate(0deg);
transform : rotate(0deg);
}
.outer-boxes {
display: inline-block;
width: 32%;
height: 32%;
padding: 5%;
margin: 0px auto;
text-align: center;
color: white;
border-color: white;
font-size: 5.5em;
vertical-align: top;
}
#box-0-out, #box-3-out, #box-6-out {
border-right: 1px solid white;
}
#box-0-out, #box-1-out, #box-2-out, #box-3-out, #box-4-out, #box-5-out {
border-bottom: 1px solid white;
}
#box-3-out, #box-4-out, #box-5-out {
border-top: 1px solid white;
}
#box-1-out, #box-4-out, #box-7-out {
border-right: 1px solid white;
border-left: 1px solid white;
}
#box-2-out, #box-5-out, #box-8-out {
border-left: 1px solid white;
}
#box-6-out, #box-7-out, #box-8-out {
border-top: 1px solid white;
}
#container_2 {
width: 30em;
/*border: solid white 1px;*/
margin: 2em auto 0 auto;
}
p {
color: white;
display: inline;
font-size: 3em;
font-weight: 100;
}
#player-score {
margin: 0 3.35em 0 1.8em;
}
#other-score {
margin:0;
}
.turn {
font-weight:normal;
}
img {
display: inline;
width: 2em;
-webkit-filter: invert(1);
filter: invert(1);
background-color: white;
}
.players {
margin: 0 0 0 4.5em;
}
@media(max-width:35em) {
#container {
width: 20em;
height: 20em;
margin-top: 6em;
}
#container_2 {
width: 20em;
}
#player-score {
margin: 0 2.35em 0 1.3em;
font-size: 2.5em;
}
#other-score {
margin:0;
font-size: 2.5em;
}
img {
width: 1.5em;
}
.players {
margin: 0 0 0 3em;
}
.outer-boxes {
font-size: 3.6em;
padding-top: 0.2em;
}
}