aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/immae/history/_sass/style.scss
blob: cb2702a1676e5528325b8be5ca9daf46c9ece282 (plain) (blame)
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
body {
    font-family: $primary-font;
    font-size: 16px;
    line-height: 1.8;
    min-height: 100vh;
    color: $text-color-primary;
}

.logo {
    max-height: 45px;
}

footer a {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.8rem;
}

.category {
    padding: 3px 10px;
    background: $primary-color;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 12px;
    line-height: 1.2;
}

@each $color,
$value in $tag-colors {
    .text-#{$color} {
        color: $value;
    }

    .bg-#{$color} {
        background-color: $value;
    }
}

.title {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    font-size: 1.8rem;
}

.post-content {


    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    strong{
        color: darken($text-color-primary, 50%);
        font-weight: 600;
    }

    table {
        border: 1px solid $border-color;
        width: 100%;
        margin-bottom: 1rem;
        border-collapse: collapse;

        th,
        td {
            border: 1px solid $border-color;
            padding: .75rem;
            vertical-align: top;
            border-top: 1px solid $border-color;
        }

        thead {

            th,
            td {
                border-bottom-width: 2px;
                padding: .75rem;
                vertical-align: top;
                border-top: 1px solid $border-color;
            }
        }
    }

    // Blockquote

    blockquote {
        background: $bg-light;
        font-style: italic;
        border-left: 8px solid $border-color;
        padding: 20px;
        margin: 20px 0px;
        box-sizing: border-box;
    }

    a {
        color: $primary-color;
        &:hover {
            color: darken($primary-color, 15%);
        }
    }



    p code,
    li code {
        font-size: .8rem;
        line-height: 1.8571;
        color: rgba(0, 0, 0, 1);
        background-color: $bg-light;
        border: 1px solid $border-color;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        margin: 0 2px;
        padding: 0 5px;
    }

    img {
        max-width: 100%;
        height: auto;
        margin: 10px 0px;
    }
}