-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (61 loc) · 1.09 KB
/
style.css
File metadata and controls
74 lines (61 loc) · 1.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.shape {
position: absolute;
width: 20px;
height: 20px;
}
.shape-1 {
background-color: #fca5a5;
}
.shape-2 {
background-color: #fcd34d;
}
.shape-3 {
background-color: #68d391;
}
.shape-4 {
background-color: #63b3ed;
}
.triangle-bg {
background: #052bd1;
clip-path: polygon(0 0, 100% 0, 0% 100%);
color: #fff;
height: 100vh;
padding: 2rem;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-color: #fcd5ce9c;
clip-path: circle(50%);
}
.shape {
position: absolute;
border-radius: 50%;
}
.circle {
width: 50px;
height: 50px;
background-color: #F56565;
}
.square {
width: 50px;
height: 50px;
background-color: #38B2AC;
}
.triangle {
width: 0;
height: 0;
border-left: 25px solid transparent;
border-right: 25px solid transparent;
border-bottom: 50px solid #4299E1;
}
.shape {
width: 20px;
height: 20px;
margin: 5px;
}