-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path091_reflection.html
34 lines (34 loc) · 959 Bytes
/
091_reflection.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reflection</title>
<style>
* {
margin: 0;
}
section {
position: relative;
width: 400px;
height: 300px;
background: linear-gradient(#D25B70 50%, #6CB3A9 1%);
}
p {
position: absolute;
width: 200px;
height: 200px;
background: linear-gradient(#F6DF96 100px, #6CB3A9 100px 115px, #F6DF96 115px 125px, #6CB3A9 125px 140px, #F6DF96 140px 150px, #6CB3A9 150px 165px, #F6DF96 165px 175px, #6CB3A9 175px 190px, #F6DF96 190px);
border-radius: 50%;
top: 50px;
left: 100px;
}
</style>
</head>
<body>
<section>
<p></p>
</section>
</body>
</html>