-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 958 Bytes
/
style.css
File metadata and controls
53 lines (46 loc) · 958 Bytes
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
h1{
text-align: center;
color: black;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
font-size: 50;
margin-top: 50px;
}
/* Full-screen SVG background */
#lockSvg {
width: 100%;
height: 100%;
background-color: transparent;
}
.svg-container {
max-width: 80vh;
margin: 0 auto;
}
/* Lines connecting dots */
svg line.connection {
stroke-width: 1.5;
stroke-linecap: round;
stroke: black;
}
/* Dots style */
svg circle.dot {
r: 2;
fill: black;
stroke: transparent;
stroke-width: 13.5;
}
/* Active dot highlight */
svg .active-dots circle {
r: 6;
fill: rgb(0, 187, 0);
opacity: 0.5;
}
.app-footer {
margin-top: 1rem;
padding: 2rem 0;
text-align: center;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
font-size: 50;
letter-spacing: 0.08em;
color: #666;
border-top: 1px solid rgba(0, 0, 0, 0.08);
}