-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholdstyle.css
129 lines (107 loc) · 1.91 KB
/
oldstyle.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
* {
color: #ffffff;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
'Lucida Sans', Arial, sans-serif;
}
body {
background-color: #6b1010;
}
.game-container {
height: 70vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.title-container {
text-align: center;
width: 510px;
border-bottom: solid 1px white;
/*margin-bottom: 30px;*/
}
.tile-container {
width: 330px;
margin-bottom: 30px;
}
.key-container {
width: 510px;
display: flex;
flex-wrap: wrap;
}
.key-container button {
width: 43px;
height: 58px;
border-radius: 4px;
border: none;
background-color: #818384;
margin: 4px;
}
.key-container button:nth-child(11) {
margin-left: 30px;
}
.key-container button:nth-child(20),
.key-container button:nth-child(28) {
width: 68px;
}
.tile-container div {
display: flex;
}
.tile-container .tile {
width: 62px;
height: 62px;
border: 2px solid lightgrey;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
margin: 2px;
}
.message-container {
height: 30px;
margin-bottom: 30px;
}
.message-container p {
background-color: #818384;
border-radius: 10px;
padding: 10px;
margin: 0;
margin-bottom: 30px;
}
.tile.flip {
-webkit-animation: 0.5s linear flipping;
animation: 0.5s linear flipping;
}
@-webkit-keyframes flipping {
0% {
transform: rotateX(0deg);
}
50% {
transform: rotateX(90deg);
}
100% {
transform: rotateX(0deg);
}
}
@keyframes flipping {
0% {
transform: rotateX(0deg);
}
50% {
transform: rotateX(90deg);
}
100% {
transform: rotateX(0deg);
}
}
.grey-overlay {
background-color: #3a3a3c !important;
border:none !important;
}
.yellow-overlay {
background-color: #b59f3a !important;
border:none !important;
}
.green-overlay {
background-color: #538d4e !important;
border:none !important;
}