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

pre {
    font-family: Iosevka;
    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;
    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;
}