-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
66 lines (59 loc) · 1.04 KB
/
style.css
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
66
* {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
box-sizing: border-box;
}
body {
background-color: rgba(0, 0, 0, 0.795);
overflow: hidden;
}
#container {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
padding: 20px;
}
#map {
height: 95%;
border-radius: 10px;
}
#output {
border-radius: 5px;
height: 35px;
outline: none;
border: none;
padding: 8.5px 10px;
color: black;
resize: none;
overflow-y: hidden;
font-weight: bold;
font-size: 1rem;
}
.output-box {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin: 20px;
margin-bottom: 0;
}
.point {
position: absolute;
width: 10px; /* Adjust size of the point */
height: 10px;
background-color: red; /* Color of the point */
border-radius: 50%; /* Make it a circle */
color: white;
}
.line {
position: absolute;
background-color: rgb(255, 0, 115);
height: 5px; /* Adjust as needed */
width: 0; /* Initial width */
transform-origin: left center;
}