-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#55 - Windmill.html
52 lines (52 loc) · 970 Bytes
/
#55 - Windmill.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
<div></div>
<div></div>
<div></div>
<div></div>
<style>
body{
background:#191919;
}
div:nth-child(1) {
position:fixed;
top:100;
left:100;
width:100;
height:50;
border-top-left-radius:500px;
border-top-right-radius:500px;
background: #F9E492;
}
div:nth-child(2) {
position:fixed;
top:150;
left:200;
width:100;
height:50;
border-top-left-radius:500px;
border-top-right-radius:500px;
background: #F9E492;
transform:rotate(180deg)
}
div:nth-child(3) {
position:fixed;
top:75;
left:175;
width:100;
height:50;
border-top-left-radius:500px;
border-top-right-radius:500px;
background: #4F77FF;
transform:rotate(90deg)
}
div:nth-child(4) {
position:fixed;
top:175;
left:125;
width:100;
height:50;
border-top-left-radius:500px;
border-top-right-radius:500px;
background: #4F77FF;
transform:rotate(270deg)
}
</style>