summary refs log tree commit diff
path: root/synapse/res/templates/style.css
blob: 097b235ae5647184a84e23d71d9554ec89361ae5 (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
html {
    height: 100%;
}

body {
    background: #f9fafb;
    max-width: 680px;
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.mx_Header {
    border-bottom: 3px solid #ddd;
    margin-bottom: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

@media screen and (max-width: 1120px) {
    body {
        font-size: 20px;
    }

    h1 { font-size: 1rem; }
    h2 { font-size: .9rem; }
    h3 { font-size: .85rem; }
    h4 { font-size: .8rem; }
}