generated from AustinCodingAcademy/JS211_PigLatinProject
-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (50 loc) · 791 Bytes
/
style.css
File metadata and controls
62 lines (50 loc) · 791 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[data-row] {
display: flex;
justify-content: flex-start;
align-items: center;
height: 34px;
margin: 25px;
border: 1px solid lightgray;
}
.row {
z-index: -10;
}
[data-row].red {
background-color: #f6c5c5;
}
[data-row].yellow {
background-color: #ffffa9;
}
[data-row].green {
background-color: #baf6ba;
}
[data-row].blue {
background-color: aliceblue;
}
.stone {
z-index: 10;
}
[data-color] {
width: 25px;
float: left;
}
[data-color="blue"] {
height: 33px;
background-color: blue;
}
[data-color="green"] {
height: 33px;
background-color: green;
}
[data-color="red"] {
height: 33px;
background-color: red;
}
[data-color="yellow"] {
height: 33px;
background-color: yellow;
}
#announce-game-won {
font-size: 50px;
text-align: center;
}