-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructure.html
169 lines (160 loc) · 6.77 KB
/
structure.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
---
permalink: /index/
---
<!DOCTYPE html>
<html>
<!-- TODO Make this page directory, create index page that shows filesystem separate?-->
<head>
<meta charset="UTF-8">
<title>Index</title>
<link rel="icon" type="image/png" sizes="48x48" href="/assets/icons/laika_construction.png">
<style>
:root {
--gradient-color-one: yellow;
--gradient-color-two: black;
--font-size: 0.8em;
--text-color: white; /* Tag used in variably setting color */
--text-color-header: white; /* Tag used in variably setting color */
--text-color-note: white; /* Tag used in variably setting color */
--spacer-height: 10px; /* Tag used in variably setting spacer height */
--spacer-width: 10px; /* Tag used in variably setting spacer width */
--header-height: 20px; /* Tag used in variably setting header height */
--header-font-size: 24px; /* Tag used in variably setting header font */
--divider-width: 100%; /* Tag used in variably setting divider width */
--text-size: 1em; /* Tag used in variably setting font size */
--text-size-note: 0.8em; /* Tag used in variably setting font size */
--text-size-note-small: 0.4em; /* Tag used in variably setting font size */
--button-size: 32px; /* Tag used in variably setting button image size */
}
.file-info-container {
display: grid;
grid-template-columns: auto auto auto auto auto; /* Adjust based on content needs */
column-gap: 10px; /* Spacing between columns */
align-items: center;
margin-bottom: 5px; /* Spacing between rows */
}
.file-info {
display: contents; /* Makes the container disappear, leaving children as grid items */
}
.icon {
width: 32px; /* Adjust the width as needed */
height: 32px; /* Adjust the height as needed */
object-fit: contain; /* Ensures the image is scaled properly within the dimensions */
background-color: transparent; /* Ensures no background color */
margin: 0px; /* Small margins around the icon */
}
.text-block, .download-link, .date-added, .file-size {
color: var(--text-color);
font-size: var(--font-size);
font-weight: normal;
margin-top: 0;
margin-bottom: 0;
}
body {
margin: 0;
padding: 0;
background-color: #1f1f1f;
font-family: Consolas, 'Courier New', monospace;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start; /* Aligns content at the top */
height: 100vh;
}
.hazard {
width: 100%;
height: 10px;
background-image: repeating-linear-gradient(
45deg,
var(--gradient-color-one),
var(--gradient-color-one) 4px,
var(--gradient-color-two) 4px,
var(--gradient-color-two) 8px
);
}
.horizontal-divider { /* Horizontal Line Divider */
height: 2px;
background-color: white;
width: var(--divider-width); /* Variable divider width */
margin-top: var(--spacer-height); /* Variable spacer margin height */
margin-bottom: var(--spacer-height); /* Variable spacer margin height */
margin-right: auto;
margin-left: auto;
}
.horizontal-spacer {
display: block;
height: var(--spacer-height); /* TODO definetly needs to be done better */
width: var(--spacer-width);
}
h1 {
margin: var(--header-height) 0;
font-size: var(--header-font-size);
color: var(--text-color-header);
}
ul {
list-style-type: none;
padding: 0;
width: 100%; /* Full width */
display: flex; /* Use flex to center the link */
justify-content: center; /* Center horizontally */
margin-bottom: 20px; /* Margin at the bottom */
}
li {
margin: 10px 0;
}
a {
color: var(--text-color-note);
text-decoration: none;
border: 2px solid white;
padding: 5px;
border-radius: 5px;
}
a:hover {
background-color: #333;
}
.no-button {
border: none;
padding: 0;
border-radius: 0;
}
p { /* Paragraph text style */
color: var(--text-color);
font-size: var(--font-size);
font-weight: normal;
margin-top: 0;
margin-bottom: 0;
}
sn { /* Small Note text style */
color: var(--text-color-note);
font-size: var(--text-size-note-small);
font-weight: normal;
margin-top: 0;
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="hazard"></div>
<h1 style="--header-height: 5px; --header-font-size: 12px">Downloads Page</h1>
<h1 style="--header-height: 0; --header-font-size: 12px">Work In Progress</h1>
<div class="horizontal-spacer" style="--spacer-height: 5px;"></div>
<div class="hazard"></div>
<div class="horizontal-spacer" style="--spacer-height: 30px;"></div>
<li><a href="/about/">About</a>
<li><a href="/placeholder/">Placeholder</a></li>
<li><a href="/placeholder/">Placeholder</a></li>
</li>
<div class="horizontal-divider" style="--spacer-height: 5px; --divider-width: 15%"></div>
<li><a href="/structure/">Website Index (You Are Here)</a></li>
<div class="horizontal-divider" style="--spacer-height: 5px; --divider-width: 15%"></div>
<li><a href="/contact.html">Contact</a></li>
<div class="horizontal-divider" style="--spacer-height: 5px; --divider-width: 15%"></div>
<li><a href="/">Home</a></li>
<div class="horizontal-spacer" style="--spacer-height: 35px"></div>
<div class="horizontal-divider" style="--spacer-height: 5px; --divider-width: 100%"></div>
<div class="horizontal-spacer" style="--spacer-height: 15px"></div>
<sn href="mailto:laika@digitaldog.online" style="--text-color-note: #6E6E6E; --text-size-note-small: 0.6em">
Contact: <a href="mailto:laika@digitaldog.online" class="no-button" style="color: inherit; text-decoration: none;">laika@digitaldog.online</a>
</sn>
</body>
</html>