-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (130 loc) · 4.06 KB
/
index.html
File metadata and controls
143 lines (130 loc) · 4.06 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>code for the fading suns</title>
<style>
body {
font-family: monospace, sans-serif;
margin: 0;
padding: 0;
background-color: grey;
}
header {
background-color: black;
color: white;
text-align: center;
padding: 1em 0;
color: white;
text-decoration: line-through
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 0.2em 0;
position: fixed;
width: 100%;
bottom: 0;
}
.container {
display: flex;
flex-wrap: wrap;
padding: 0.5em;
overflow: auto;
}
.column {
background-color: #f4f4f4;
border-radius: 10px;
padding: 1em;
margin: 0.5em;
height: 600px;
}
.newsbox {
background-color: black;
color: white;
border-radius: 10px;
padding: 1em;
margin: 0.5em;
}
.newsheader {
color: aliceblue;
text-shadow: 5px 5px blue;
}
.left,
.right {
flex: 1;
}
.center {
flex: 2;
}
@media (max-width: 768px) {
.left {
display: none;
}
.center,
.right {
flex: 1;
}
}
</style>
</head>
<body>
<header>
<h1 class="headertext">code for the fading suns</h1>
</header>
<div class="container">
<div class="column left">
<p>making software for the emperor</p>
<p>code is not gone</p>
<p>shapeshifters</p>
<p>making a new future</p>
<p>still hope</p>
<p>but suns are fading</p>
<hr />
<p><a href="https://www.youtube.com/playlist?list=PLz3IIrEL4x8HH_WfGTLPH_Mz67-C5VVYs"></a>
<iframe width="350" height="250"
src="https://www.youtube.com/embed/videoseries?si=xcPMwZqWrJb3Mp4t&list=PLz3IIrEL4x8HH_WfGTLPH_Mz67-C5VVYs"
title="audiovisualis
contentus" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</p>
<p><a href="https://github.com/orgs/zelonware/repositories">codex</a></p>
</div>
<div class="column center">
<p>news on zelonware</p>
<div class="newsbox">
<p class="newsheader">starting with flutter</p>
<p>an awesome crossplatform development experience</p>
</div>
<div class="newsbox">
<p class="newsheader">crossing a new gate</p>
<p>leaving XAML behind</p>
</div>
<div class="newsbox">
<p class="newsheader">lost in space</p>
<p>no code to go</p>
</div>
<div class="newsbox">
<p class="newsheader">waves are gone</p>
<p>why nobody cares?</p>
</div>
</div>
<div class="column right">
<p>new to zelonware?</p>
<p>be not afraid</p>
<div>
<img src="https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExZXczcHNlcnc1d3doNmVpNGU1M2hqanQyc3A4cWozcTV1ODNyNHZmNSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/xUOxeV9ul4TnrTw82k/giphy.gif"
alt="Space portal GIF" width="350px">
</div>
<p>the gate is open</p>
<p>just jump</p>
</div>
</div>
<footer>
<p>made with ☕ by elenadotnet</p>
</footer>
</body>
</html>