blob: c451b81ec1e168073be3ce387e650e44ee5a48ec (
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
103
104
105
106
107
108
109
|
.banner {
color: #e7eaf6 !important;
}
.ml-18 {
margin-left: 9rem;
}
.mr-18 {
margin-right: 9rem;
}
.btn-primary {
background: #38598b !important;
color: #ffffff !important;
}
.primary-color {
background: #e7eaf6;
}
.secondary-color {
background: #a2a8d3;
}
.third-color {
background: #38598b;
}
.fourth-color {
background: #113f67;
}
.sidebar {
border: 1px solid #dadff1;
border-radius: 4px;
background: #f3f3f3;
justify-content: space-between;
}
.content {
border: 1px solid #dadff1;
border-radius: 4px;
background: #f3f3f3;
}
.sidebar-element {
border-bottom: 1px solid #38598b;
color: #113f67;
}
.flex-container {
display: flex;
flex-flow: row;
}
.navigation-element {
display: flex;
flex: 1 100px;
}
.end-justified {
justify-content: end;
}
.pagination {
font-size: 18px;
}
body {
font-family: Roboto, Helvetica, Arial, sans-serif !important;
margin: 0;
}
a {
color: #38598b;
}
p {
font-size: 22px;
}
h1 {
color: #113f67 !important;
}
h2 {
color: #155084 !important;
}
h3 {
color: #285f8a !important;
}
pre {
border: 1px #dadff1 solid;
border-radius: 4px;
}
li::marker {
color: #155084;
}
:not(.sidebar-element) li {
font-size: 20px;
list-style-type: disc;
margin-top: .7em;
line-height: 1em;
}
|