-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
89 lines (77 loc) · 1.43 KB
/
styles.css
File metadata and controls
89 lines (77 loc) · 1.43 KB
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
html {
min-height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: #1e1e22;
color: #e1e1e1;
font-family: Montserrat, sans-serif;
font-weight: 100;
}
body {
margin: 0;
}
h1 {
color: #f5b324;
font-family: Montserrat, sans-serif;
font-weight: 100;
}
div.game {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 30px 0;
}
button.field, button.menu-button {
width: 100px;
height: 100px;
margin: 5px;
border: none;
cursor: pointer;
font-family: Montserrat, sans-serif;
color: #e1e1e1;
font-weight: 100;
background-color: #404044;
}
button.field {
font-size: 80px;
}
button.menu-button {
width: 300px;
height: 80px;
font-size: 16px;
border-radius: 3px;
}
button:hover {
filter: brightness(150%);
margin-top: 4px;
}
div.row {
display: flex;
}
p.turn {
opacity: 0;
}
div.end {
background-color: #1e1e22;
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
}
div.menu {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
div.menu-button-container {
background-color: #191919;
border-radius: 10px;
box-shadow: 3px 3px 2px 2px rgb(0, 0, 0, 0.1);
padding: 50px;
display: flex;
flex-direction: column;
align-items: center;
}