-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (52 loc) · 1.04 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
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
gap: 40px;
}
.container {
display: flex;
flex-direction: column;
gap: 1px;
min-height: 100vh;
}
.ui {
display: flex;
flex-direction: column;
/* gap: 20px; */
justify-content: center;
align-items: center;
}
.options {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
width: fit-content;
gap: 10px;
}
.newGrid,
.random {
font-size: 16px;
background-color: lightgoldenrodyellow;
padding: 20px;
height: fit-content;
width: 100%;
border: solid 4px lightskyblue;
border-radius: 10px;
}
.colour, .clear {
height: 50px;
width: 50px;
margin: 8px;
border: none;
border-radius: 1000px;
}
.colourText,
.options {
font-size: 24px;
font-weight: bold;
padding: 10px;
}