-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (113 loc) · 2.15 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
124
125
126
127
128
129
130
body {
font-family: 'Roboto Mono', monospace;
font-family: monospace;
}
header {
font-size: 3em;
font-weight: bold;
color: gray;
}
#timer {
font-size: 2em;
font-weight: bold;
color: gray;
}
.row {
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
}
.column {
display: flex;
flex-direction: column;
align-items: center;
}
.button {
color: gray !important;
background: #ffffff;
margin: 3px;
border: 2px solid gray !important;
border-radius: 4px;
display: inline-block;
transition: all 0.3s ease 0s;
font-family: 'Roboto Mono', monospace;
font-family: monospace;
}
.button:hover {
color: black !important;
border-radius: 30px;
border-color: gray !important;
transition: all 0.3s ease 0s;
}
.up {
/* no change */
}
.right {
/* Safari */
-webkit-transform: rotate(-90deg);
/* Firefox */
-moz-transform: rotate(-90deg);
/* IE */
-ms-transform: rotate(-90deg);
/* Opera */
-o-transform: rotate(-90deg);
/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.left {
/* Safari */
-webkit-transform: rotate(-270deg);
/* Firefox */
-moz-transform: rotate(-270deg);
/* IE */
-ms-transform: rotate(-270deg);
/* Opera */
-o-transform: rotate(-270deg);
/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.down {
/* Safari */
-webkit-transform: rotate(-180deg);
/* Firefox */
-moz-transform: rotate(-180deg);
/* IE */
-ms-transform: rotate(-180deg);
/* Opera */
-o-transform: rotate(-180deg);
/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.letter-container {
border: 2px solid gray;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
height: 60px;
width: 60px;
margin: 3px;
align-items: center;
vertical-align: center;
}
.letter {
font-size: 3em;
text-align: center;
vertical-align: center;
margin-top: 6px;
}
.underline {
text-decoration: underline;
}
.warning {
color: black;
}
.hidden {
display: none;
}
.white {
color: white;
}
#container {
margin: 0 auto;
}