-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (52 loc) · 890 Bytes
/
style.css
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body{
background: #000;
}
section{
position: relative;
width:100%;
padding:50px;
}
.circle{
position: relative;
overflow: hidden;
}
.circle img{
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit: cover;
}
.circle.circle1{
width:500px;
height:500px;
float: left;
border-radius: 50%;
margin:20px;
shape-outside: circle();
color:#fff;
}
.circle.circle2{
width:300px;
height:300px;
float: right;
border-radius: 50%;
margin:20px;
shape-outside: circle();
}
section h2{
color:#fff;
font-size: 2em;
margin-bottom: 10px;
}
section p{
color:#fff;
}