-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.css
66 lines (58 loc) · 986 Bytes
/
index.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
.button {
position: absolute;
top: 2rem;
left: 1rem;
width: 180px;
padding: 1rem;
background-color: palevioletred;
color: white;
font-size: 1rem;
font-weight: 700;
font-family: Arial;
}
.button:hover {
cursor: pointer;
background-color: goldenrod;
}
.header {
color: #333;
font-family: monospace;
font-size: 2rem;
text-transform: uppercase;
text-align: center;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: calc(100vh - 8rem);
width: 100vw;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 1rem;
padding: 0.25rem;
}
.child {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 480px;
height: 480px;
margin: 1rem;
padding: 0.5rem;
font-size: 1.5rem;
}
.one {
background-color: peru;
}
.two {
background-color: papayawhip;
}
.three {
background-color: peachpuff;
}