-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
37 lines (33 loc) · 709 Bytes
/
style.css
File metadata and controls
37 lines (33 loc) · 709 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
* {
box-sizing: border-box;
}
body {
background-color: #181818;
display : flex;
align-items : center;
justify-content : center;
height : 100vh;
overflow : hidden;
margin : 0;
}
.container {
background-color: #181818;
box-shadow : 0 0 40px 10px #000;
display : flex;
justify-content : center;
align-items : center;
max-width : 600px;
flex-wrap : wrap;
}
.square {
width : 20px;
height : 20px;
background-color: #1d1d1d;
margin : 2px;
box-shadow : 0 0 2px #000;
transition : 1.5s ease-out;
border-radius : 25%;
}
.square:hover {
transition-duration: 0s;
}