-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (40 loc) · 725 Bytes
/
style.css
File metadata and controls
46 lines (40 loc) · 725 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
* {
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
background-color: coral;
}
.empty {
margin: 15px;
height: 150px;
width: 150px;
background-color: white;
border-radius: 5px;
border: 4px solid black;
overflow: hidden;
}
.fill {
background-image: url(https://source.unsplash.com/random/150x150);
height: 142px;
width: 142px;
cursor: pointer;
box-shadow: none;
}
.hold {
border: 5px solid white;
}
.hovered {
background-color: grey;
border: 5px dotted white;
}
@media (max-width:800px) {
body {
flex-direction: column;
}
}