-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (68 loc) · 1.18 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
* {
font-family: 'Montserrat', sans-serif;
}
body {
background-color: rgb(138, 138, 138);
}
h2 {
margin-top: 0;
}
#title {
margin-top: 70px;
font-weight: bold;
}
#nav-bar {
z-index: 2;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: rgb(255, 255, 255);
width: 500px;
height: 190px;
padding: 30px;
}
.create-panel {
width: 150px;
height: 100px;
}
button {
width: 150px;
height: 30px;
border: 0px;
background-color: rgb(67, 107, 176);
margin-top: 10px;
margin-left: 0px;
}
.sadden {
background-color: rgb(67, 107, 176);
color: black;
cursor: default;
}
.unsadden {
background-color: rgba(93, 152, 255);
color: white;
cursor: pointer;
}
#start-game, #copy-button {
background-color: rgba(93, 152, 255);
color: white;
}
#copy-button {
height: 20px;
margin-bottom: 10px;
}
canvas {
border: 1px solid black;
}
#centered {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
input, label {
margin: 0;
cursor: pointer;
}