-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
108 lines (88 loc) · 1.38 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
body {
font-family: 'Montserrat', sans-serif;
}
section #tile-board {
background-color: #92C96E;
}
section.game-page header > h1 {
font-size: 50px !important;
}
section#scoreboard {
background-color: #AED793;
}
.tile {
display: inline-block;
width: 60px;
height: 120px;
border-color: black;
border-style: solid;
border: 2px;
margin-right: 10px;
margin-top: 30px;
padding-top: 10px;
text-align: center;
font-size: 30px;
border-radius: 5px;
line-height: 40px;
color: white;
}
.tile:hover {
text-decoration: none;
color: white;
}
.tile-active {
background-color: #997238;
}
.tile-active:hover {
box-shadow: 2px 2px #994238;
}
.tile-disabled {
background-color: #DDC5A2 !important;
}
.player-selected {
background-color: #994238;
}
.dice > img {
height: 100px;
width: auto;
background-color: white;
margin: 10px;
margin-top: 40px;
margin-bottom: 20px;
}
.dice > div {
margin-bottom: 20px;
}
article p {
padding-top: 20px;
padding-bottom: 10px;
font-size: 20px;
}
footer p {
padding-top: 20px;
padding-bottom: 10px;
}
p {
padding-top: 10px;
padding-bottom: 10px;
}
h3 {
margin-bottom: 40px;
}
button#start-game {
font-size: 30px;
margin-top: 20px;
}
h1 {
line-height: 90px;
}
.highlight {
color: #994238 !important;
font-weight: bold;
}
h3.player1 {
font-size: 30px;
}
h3.player2 {
font-size: 30px;
}