summary refs log tree commit diff stats
path: root/index.html
blob: f9bf20df92c819ee64d7b50c727aac6722d6cb0d (plain) (blame)
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
<!doctype html>
<html lang="en">
    <head>
        <meta charset="UTF-8"/>
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>~ siarie's homepage</title>
	<style>
	 :root {
	     --background: #FFFCFF;
	     --foreground: #282629;
	     --blue: #53A6E1;
	     --purple: #BF65F0;
	 }

	 @media (prefers-color-scheme: light) {
	     :root {
		 --background: #FFFCFF;
		 --foreground: #282629;
		 --blue: #53A6E1;
		 --purple: #BF65F0;
	     }
	 }

         @media (prefers-color-scheme: dark) {
	     :root {
		 --background: #282629;
		 --foreground: #FFFCFF;
		 --blue: #66BFFF;
		 --purple: #CC78FA;
	     }
	 }


	 * {box-sizing: border-box;}
	 body {
	     margin: 0;
	     font-family: monospace;
	     font-size: 1rem;
	     display: flex;
	     flex-direction: column;
	     align-items: center;
	     justify-content: center;
	     height: 100vh;
	     width: 100%;
	     background: var(--background);
	     color: var(--foreground);
	 }

	 a {
	     color: var(--blue);
	     display: inline-block;
	     text-decoration: none;
	 }

	 pre {font-size: 1rem; margin: 0;}
	 ul {margin: 0; padding: 0}
	 li {display: inline;list-style: none;}
	</style>
    </head>
    <body>
<pre>
      _               _
     (_)             (_)
 ___  _   __ _  _ __  _   ___
/ __|| | / _` || '__|| | / _ \
\__ \| || (_| || |   | ||  __/
|___/|_| \__,_||_|   |_| \___|
==============================</pre>
<p>in the beginning there was darkness.</p>
    </body>
</html>