-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (33 loc) · 895 Bytes
/
Copy pathstyle.css
File metadata and controls
38 lines (33 loc) · 895 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
@import url("<https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:ital,wght@0,100;0,300;1,100;1,300&display=swap>");
body {
background-image: url("https://cdn.wallpapersafari.com/1/80/8DYndB.png");
display: flex;
flex-wrap: wrap;
margin-top: 100px;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
"Helvetica Neue", sans-serif;
}
div {
background-color: #daf7c1;
border-radius: 14px;
box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
padding: 8px 18px;
margin: 8px;
width: 320px;
display: flex;
justify-content: space-between;
align-items: center;
}
div:hover {
box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.4);
cursor: pointer;
}
img {
width: 40px;
height: 40px;
border-radius: 50%;
}
p {
font-size: 18px;
}