-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (51 loc) · 931 Bytes
/
styles.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
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: antiquewhite;
height: 100vh;
width: 100vw;
font-family: "helvetica", sans-serif;
}
h1 {
margin: 0;
padding: 0;
margin-bottom: 10px;
}
.box {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: aliceblue;
height: 90vh;
width: 550px;
margin-top: 0px;
padding-top: -50px;
}
.container {
flex: none;
display:flex;
width: 480px;
height: 480px;
flex-wrap: wrap;
margin-top: 20px;
}
.grid {
width: 30px;
height: 30px;
flex: none;
padding: 0px;
background-color: gray;
}
button {
margin: 5px;
padding: 3px;
padding-left: 7px;
padding-right: 7px;
border: 3px solid peru;
border-radius: 10px;
background-color: white;
}