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

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

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%;
}

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;
}