-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patrik Gustafsson - Software Development Leader</title>
<style>
body {
background-color: black;
color: grey;
font-family: "Avenir", sans-serif;
margin: 0;
padding: 0;
}
h1, p, a {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
.column {
float: left;
margin-right: 2%;
margin-bottom: 2%;
width: 29%;
max-width: 30em;
min-width: 15em;
display: block;
overflow: hidden;
padding: 1%;
--column-color: turquoise; /* Default color, can be overridden for each column */
border-bottom: 1pt solid var(--column-color);
border-right: 1pt solid var(--column-color);
}
#boardgames {
--column-color: orange; /* Define a CSS variable for boardgames column color */
}
#roleplay {
--column-color: turquoise; /* Define a CSS variable for roleplay column color */
}
#work {
--column-color: magenta; /* Define a CSS variable for work column color */
}
.column a {
color: var(--column-color);
}
.column h1 {
color: var(--column-color);
}
</style>
</head>
<body>
<div id="boardgames" class="column">
<h1>Boardgames</h1>
<p>Discover my favorite boardgames and strategies.</p>
<a href="https://boardgamegeek.com/collection/user/paven?sort=rating&sortdir=desc&rankobjecttype=subtype&rankobjectid=1&columns=title%7Crank%7Crating%7Cbggrating&geekranks=Board+Game+Rank&excludesubtype=boardgameexpansion&wanttoplay=1&objecttype=thing&ff=1&subtype=boardgame" rel="me">Boardgame Collection</a>
</div>
<div id="roleplay" class="column">
<h1>Roleplay</h1>
<p>Explore the realms of roleplaying and storytelling.</p>
<a href="http://regin.mumma.nu/" rel="me">Regin - Modern Fantasy World <span style="color: var(--column-color);">🇸🇪</span></a>
</div>
<div id="work" class="column">
<h1>Work</h1>
<p>Software Development Leader with 15 years of experience. Passionate about coaching teams for success.</p>
<a href="https://github.com/paven" rel="me">GitHub</a>
<br/>
<a href="https://www.howtoknow.se" rel="me">How To Know AB - Unleash People and Product</a>
</div>
<!-- Add more columns if needed... -->
</body>
</html>