-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (71 loc) · 1.24 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
body {
color: white;
display: flex;
margin: 0;
flex-direction: column;
gap: 30px;
background-color: #181818;
}
button:hover {
background-color: wheat;
color: darkgoldenrod;
}
button {
cursor: pointer;
background-color: darkgoldenrod;
color: wheat;
padding: 10px;
font-family: 'Nanum Brush Script', cursive;
font-size: 35px;
border: 2px solid darkgoldenrod;
border-radius: 10%;
text-align: center;
font-weight: bold;
}
.header {
color: orange;
font-family: 'Sedgwick Ave Display', cursive;
font-size: 90px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 120px;
width: 100vw;
}
.main {
display: flex;
}
.options {
display: flex;
flex: 1;
flex-direction: column;
margin-left: 200px;
margin-right: 200px;
gap: 20px;
}
.grid-container {
margin-right: 200px;
margin-bottom: 40px;
height: fit-content;
width: fit-content;
border: 20px solid #FFD580;
box-sizing: border-box;
}
.container {
display: flex;
flex-direction: column;
width: 400px;
height: 400px;
box-sizing: border-box;
}
.block {
background-color: whitesmoke;
flex: 1;
display: inline-block;
border: 1px solid rgb(156 156 156);
}
.row {
display: flex;
flex: 1;
}