-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (62 loc) · 946 Bytes
/
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
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
}
button {
padding: 8px 24px;
margin-bottom: 20px;
}
.header {
height: 72px;
background-color: #EEEEEE;
display: flex;
justify-content: center;
align-items: center;
font-size: 32px;
color: #3D2C8D;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
margin: 25px 0;
}
.row {
display: flex;
height: 100%;
}
.row >*{
flex: 1 1 0;
}
.grid {
height: 100%;
/* border: 1px solid black; */
}
.active {
background-color: aqua;
}
.container {
border: 10px outset gray;
width: 400px;
height: 400px;
display: flex;
flex-direction: column;
}
.buttons {
width: 400px;
display: flex;
justify-content: space-between;
}
.footer {
height: 72px;
background-color: #DED9C4;
display: flex;
justify-content: center;
align-items: center;
}