-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlol.html
65 lines (60 loc) · 1.66 KB
/
lol.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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Giannis</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@200;400;500;600&display=swap");
#overlay {
position: fixed;
right: 10px;
top: 10px;
width: 389px;
height: 200px;
background-color: red;
}
#overlay-title {
position: absolute;
left: 43px;
top: -35px;
font-family: "Karla", sans-serif;
font-weight: bold;
font-size: 36px;
}
#overlay-highlight {
position: absolute;
left: 158px;
top: 9px;
font-family: "Karla", sans-serif;
font-weight: 300;
font-size: 13px;
}
#overlay-description {
position: absolute;
left: 10px;
top: 53px;
margin: 0px;
font-size: 13px;
font-family: "Karla", sans-serif;
font-weight: 400;
}
</style>
</head>
<body>
<div id="overlay">
<img
src="https://cdn.glitch.global/f2f5e3c4-2b24-4901-8a3c-d3c94cd4e205/Giannis%20Scan-3.png?v=1656781194167"
width="389px"
height="151px"
/>
<p id="overlay-title">Intake</p>
<p id="overlay-highlight">Highlight - pneumatics and motors</p>
<p id="overlay-description">
Using pneumatics, the mechanism <br> releases and falls when a button is
<br> pressed. Once the intake is deployed,<br> two motors spin the rollers,
directing <br> balls into the robot.
</p>
</div>
</body>
</html>