summaryrefslogtreecommitdiff
path: root/assets/css/style.css
blob: 15d6fbc5156f0f20e7b9715ed5386c9b39929957 (plain)
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
html {
    background-color: #0f1011;
}

pre {
    font-family: Iosevka, monospace;
    background-color: #292b2b;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

h1 {
  font-size: 1.7rem;
}

h2 {
  font-size: 1.2rem;
}

section {
    padding-top: 1rem;
}

body {
    background-color: #1d1f21;
    font-family: IBM Plex Sans, sans-serif;
    color: #c5c8c6;
    max-width: 54rem;
    margin: 0.5rem auto;
    position: relative;
    padding: 1rem;
    border-radius: 4px;
    line-height: 150%;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 5px double #292b2b;
}

header ul {
    list-style-type: none;
    border-left: 5px double #292b2b;
    padding-left: 1rem;
}


header a img {
    max-width: 8rem;
}


footer {
    margin-top: 2rem;
    border-top: 5px double #292b2b;
    color: #898b8a;
    font-size: 80%;
    line-height: 100%;
}

footer div {
    display: flex;
    align-items: center;
}
footer img {
    height: 1.6rem;
    padding-left: 1rem;
}


img,
picture,
video {
  max-width: 100%;
}

a {
    outline: none;
}

a:link {
    color: #81a2be;
}

a:visited {
    color: #b294bb;
}

a:focus {
    text-decoration: none;
    background:  #5a5b5a;

}

a:hover {
    text-decoration: none;
    background: #3f3f3f;
}

a:active {
    color: #de935f;
}

.rss-icon {
    max-width: 1.3rem;
    padding-left: 0.7rem;
}

#addressbook {
    text-align: center;
    border-bottom: 5px double #292b2b;
}


.forms-carousel {
    margin: auto;
    overflow: hidden;
    position: relative;
}

.forms-carousel li {
    white-space: pre-line;
    border-bottom: 2px solid #292b2b;
}

.forms-carousel ul {
    list-style: none;
}

.form-entry p {
    font-family: Iosevka;
}