-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (59 loc) · 1.06 KB
/
style.css
File metadata and controls
59 lines (59 loc) · 1.06 KB
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
57
58
59
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.box{
width: 150px;
height: 150px;
box-shadow: 0 0 20px #00000015,
-10px -10px #ffc947;
border-radius: 20px;
position: relative;
overflow: hidden;
}
.box svg{
position: absolute;
bottom: 0;
left: 0;
}
.box h1{
margin-top: 25px;
font-family: 'Poppins', sans-serif;
}
.box :is(h1, p){
font-family: 'Poppins', sans-serif;
margin-left: 15px;
}
.box p:nth-child(2){
font-size: 0.6em;
font-weight: 700;
color: #0000007c;
}
.box p:nth-child(3){
font-size: 0.8em;
font-weight: 700;
color: #0099ff;
}
i{
position: absolute;
color: #c5c5c57c;
right: 8%;
top: 20%;
transform: rotate(15deg);
}
i:nth-child(5){
right: 20%;
top: 40%;
}
i:nth-child(6){
right: 5%;
top: 60%;
}