-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
55 lines (53 loc) · 2.07 KB
/
index.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
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<main class="toilet">
<div class="tank">
<div class="flush"></div>
</div>
<div class="bridge-wrapper">
<div class="bridge"></div>
</div>
<div class="bowl">
<div class="bowl-inner-rim">
<svg width="100%" height="280px" viewBox="0 0 100 100" >
<linearGradient id="water-texture" spreadMethod="repeat">
<stop offset="0%" stop-color="lightblue" />
<stop offset="50%" stop-color="skyblue" />
<stop offset="100%" stop-color="lightblue" />
</linearGradient>
<linearGradient id="pee-texture">
<stop offset="0%" stop-color="orchid" />
<stop offset="50%" stop-color="plum" />
<stop offset="100%" stop-color="plum" />
</linearGradient>
<filter id="inset-shadow">
<feComposite operator="out" in2="SourceGraphic"/>
<feComposite operator="atop" in2="SourceGraphic"/>
</filter>
<filter id="urine-blur" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="6">
</filter>
<filter id="shadow-blur" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="3">
</filter>
<filter id="stream-blur" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2">
</filter>
<rect class="shadow" x="36" y="35" width="28" height="30" rx="12" ry="12"></rect>
<ellipse class="urine" cx="50" cy="50" rx="9" ry="10" />
<ellipse class="water" cx="50" cy="50" rx="30" ry="31" />
</svg>
</div>
</div>
</main>
<script src="app.js"></script>
</body>
</html>