-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathnike-logo.html
52 lines (49 loc) · 922 Bytes
/
nike-logo.html
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
<html>
<head>
<style>
#nike {
position: absolute;
top: 100px;
left: 150px;
width: 470px;
height: 200px;
overflow: hidden;
font-family: Arial, sans-serif;
font-size: 40px;
line-height: 300px;
text-indent: 350px;
z-index:3;
}
#nike::before {
content: "";
position: absolute;
top: -250px;
left: 190px;
width: 150px;
height: 550px;
background: black;
border-top-left-radius: 60px 110px;
border-top-right-radius: 130px 220px;
transform: rotate(-113deg);
z-index: 1;
}
#nike::after {
content: "";
position: absolute;
top: -235px;
left: 220px;
width: 120px;
height: 500px;
background: black;
border-top-left-radius: 60px 110px;
border-top-right-radius: 130px 220px;
background: white;
transform: rotate(-104deg);
z-index: 2;
}
</style>
</head>
<body>
<div id="nike"></div>
</body>
</html>