aboutsummaryrefslogtreecommitdiff
path: root/default_style.c
blob: e94301e16a74f9809b2512036852fa4f75ebaa2c (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
#include "default.h"
#include <stddef.h>

const char default_style[] =
    "body\n"
    "{\n"
    "    font-family: 'Courier New', Courier, monospace;\n"
    "}\n"
    "td\n"
    "{\n"
    "    font-size: 14px;\n"
    "}\n"
    "a\n"
    "{\n"
    "    text-decoration: none;\n"
    "}\n"
    ".userform\n"
    "{\n"
    "    padding: 4px;\n"
    "}\n"
    ".loginform\n"
    "{\n"
    "    display: grid;\n"
    "}\n"
    "form, label, table\n"
    "{\n"
    "    margin: auto;\n"
    "}\n"
    "div\n"
    "{\n"
    "    align-items: center;\n"
    "    display: grid;\n"
    "}\n"
    "input, .abutton\n"
    "{\n"
    "    margin: auto;\n"
    "    border: 1px solid;\n"
    "    border-radius: 8px;\n"
    "}\n"
    "header, footer\n"
    "{\n"
    "    display: flex;\n"
    "    justify-content: center;\n"
    "    text-decoration: auto;\n"
    "}\n"
    "table\n"
    "{\n"
    "    max-width: 50%;\n"
    "}\n"
    "tr:nth-child(even)\n"
    "{\n"
    "    background-color: lightgray;\n"
    "}\n"
    ".page\n"
    "{\n"
    "    margin: 0.2rem;\n"
    "}\n"
    ".pages\n"
    "{\n"
    "    display: flex;\n"
    "}\n";

const size_t default_style_len = sizeof default_style - 1;