- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMG.css
More file actions
Latest commit
32 lines (29 loc) · 541 Bytes
/
Copy pathMG.css
File metadata and controls
32 lines (29 loc) · 541 Bytes
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
* {
box-sizing: border-box;
}
body {
margin:0;
display: flex;
align-items: center;
justify-content: center;
width:100vw;
height:100vh;
}
main {
display: flex;
flex-wrap: wrap;
width:600px;
}
.box {
width:150px;
height:150px;
background-color: darkblue;
color: transparent;
display: flex;
font-size: xx-large;
font-weight: bold;
align-items: center;
justify-content: center;
border:1px solid black;
cursor: pointer;
}