-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (56 loc) · 1.11 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
body {
display: flex;
flex-direction: column;
align-items: center;
}
.boardContainer {
display: grid;
width: 600px;
height: 600px;
margin: auto;
padding: 1%;
grid-template: repeat(3, 1fr) / repeat(3, 1fr) ;
border: 6px;
}
h1 {
text-align: center;
}
.box {
border: 6px solid;
font-size: 1000%;
background-color: aliceblue;
text-align: center;
}
.promptContainer {
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: large;
border: none;
padding: 25px;
height: fit-content;
width: fit-content;
color: black;
background-color: aliceblue;
border-style: solid;
border-color: black;
border-radius: 4px;
font-size: 30pt;
}
.marker-button {
text-align: center;
border: none;
padding: 25px;
height: fit-content;
width: fit-content;
color: black;
background-color: aliceblue;
border-style: solid;
border-color: black;
border-radius: 4px;
font-size: 30pt;
}
.hide-button {
display: none;
}