-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (75 loc) · 2 KB
/
index.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
<html>
<head>
<meta charset="utf-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<style>
@media (prefers-color-scheme: light) {
:root {
--bg: #f2f1eb;
--fg: #445128;
--accent-primary: #e9766d;
--accent-secondary: #83a146;
--accent-tertiary: #b1534c;
--bold-fg: #202613;
}
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #121b21;
--fg: #e88d7a;
--accent-primary: #8ebcbf;
--accent-secondary: #b1534c;
--accent-tertiary: #448088;
--bold-fg: #e8798b;
}
}
</style>
<link rel="stylesheet" href="./styles.css">
<title>About - Darío</title>
</head>
<body>
<div id="body-container">
<div id="about-me">
<div class="about-panel" id="about-left">
<div>
Darío Gullón
</div>
<div>
Software developer
</div>
<div>
<a href="https://google.com/maps/place/Asturias">Asturias</a>
</div>
<!-- <div class="inline-about">
<a href="https://github.com/compilercomplied">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/sinecodes">
<i class="fab fa-twitter"></i>
</a>
</div> -->
</div>
<div id="separator"></div>
<div class="about-panel" id="about-right">
<div class="inline-about">
<a href="https://github.com/compilercomplied">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/sinecodes">
<i class="fab fa-twitter"></i>
</a>
</div>
<!-- <div>
Software developer
</div>
<div>
<a href="https://google.com/maps/place/Asturias">Asturias</a>
</div> -->
</div>
</div>
</body>
</html>