summaryrefslogtreecommitdiff
path: root/source/css/style.css
blob: 5a6240600107204f1293d63ccc9e955762411189 (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
pre {
    background-color: none!important;
    padding: 0%!important;
}

#mourn {
    filter: grayscale(1) !important;
    -webkit-filter: grayscale(1) !important;
}

:root {
    --transition-speed: unset;
    --background-color: white;
    --brightness: 1;
    --contrast: 1;
}

@media(prefers-color-scheme:dark) {
    
    :root:not([data-user-color-scheme]) {
        --box-shadow: none!important;
        --transition-speed: 0.5s;
        --background-color: #121212!important;
        --brightness: 0.7;
        --contrast: 1.2;
    }
}

[data-user-color-scheme='dark'] {
    --box-shadow: none!important;
    --transition-speed: 0.5s;
    --background-color: #121212!important;
    --brightness: 0.7;
    --contrast: 1.2;
}

* {
    transition: backgourd-color var(--transition-speed);
}

.card {
    box-shadow: var(--box-shadow);
    background-color: var(--background-color);
}

img:not([src*=".svg"]) {
    filter: brightness(--brightness) contrast(--contrast);
}

@media screen and (max-width:1023px) {
    .navbar-menu {
        box-shadow: 0 8px 16px -8px rgb(10 10 10 / 10%)!important
    }
    .post-content {
        padding-top: 0!important
    }
    .post-card {
        margin: 0 0 0 0!important
    }
}

.post-podcast-player {
    padding-bottom: 1.5rem
}

.post-card {
    margin: 0 1rem 0rem 1rem
}

.navbar-brand .navbar-item:hover {
    background-color: inherit!important
}

.entry {
    margin-bottom: 1.5rem!important;
    margin-top: 1.5rem!important;
    transition: box-shadow .1s
}

.entry:hover {
    box-shadow: 0 1em 2em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%)
}

.pagination-bar {
    padding-left: .25rem;
    padding-right: .25rem
}

.footer {
    padding: 1rem 1rem 1rem!important;
    background-color: transparent!important
}

.subnav-top {
    border-bottom: 1px solid;
    padding-bottom: 1rem;
    display: inline;
}

.subnav-bottom {
    margin-top: 1.5rem !important;
}