Skip to content

Commit c2369b4

Browse files
index.html
1 parent cf2aa62 commit c2369b4

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

static/index.html

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,44 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
56
<title>LimberDuck Data</title>
67
<style>
78
body {
89
background-color: #212121;
910
color: #FFFFFF;
1011
font-family: 'Courier New', monospace;
11-
margin: 40px;
12+
margin: 0;
13+
padding: 5vw;
14+
display: flex;
15+
flex-direction: column;
16+
align-items: flex-start;
1217
}
1318

1419
h1 {
1520
color: #E57333;
16-
margin-bottom: 20px;
21+
margin-bottom: 1em;
22+
font-size: clamp(1.5rem, 5vw, 2.5rem);
1723
}
1824

1925
ul {
2026
list-style: none;
2127
padding-left: 0;
28+
margin: 0;
29+
width: 100%;
30+
max-width: 600px;
31+
}
32+
33+
li {
34+
margin-bottom: 0.8em;
35+
font-size: clamp(1rem, 3.5vw, 1.2rem);
36+
word-break: break-all;
2237
}
2338

2439
li::before {
2540
content: "▹ ";
2641
color: #80CBC4;
27-
font-size: 1.2em;
42+
font-size: 1.1em;
2843
}
2944

3045
a {

0 commit comments

Comments
 (0)