-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtkalve.css
109 lines (101 loc) · 1.44 KB
/
tkalve.css
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
/** @format */
:root {
--dark-color: #465e73;
--main-color: #bfd9c3;
--grey: #ececee;
--light-grey: #f2f2f2;
}
body {
background: var(--dark-color);
color: var(--grey);
margin: 0;
height: 100%;
font-family: "Roboto", sans-serif;
font-size: 18px;
}
h1,
h2,
h3 {
font-family: "Palanquin Dark", sans-serif;
font-weight: 400;
}
.container {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.contact h1 {
text-align: center;
color: var(--main-color);
}
main {
margin: 2em;
}
a {
color: var(--light);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
dl {
margin: 0;
}
dl dt {
font-weight: bold;
}
.mt {
margin-top: 10px;
}
p {
clear: both;
margin-top: 40px;
}
@media (max-width: 479px) {
dl dt:after {
content: ":";
}
dl dd {
margin-left: 0;
margin-bottom: 10px;
}
}
@media (min-width: 480px) {
dl dt,
dl dd {
float: left;
margin-bottom: 5px;
}
dl dt {
clear: both;
width: 150px;
text-align: right;
}
dl dd {
margin: 0;
margin-left: 30px;
clear: right;
}
dl dd:after {
content: "";
display: table;
clear: both;
}
}
@media screen and (prefers-color-scheme: light) {
body {
background-color: var(--light-grey);
color: var(--dark-color);
}
.contact h1 {
color: var(--main-color);
}
a {
color: var(--dark-color);
}
}