-
Notifications
You must be signed in to change notification settings - Fork 0
/
esr-styles.css
109 lines (94 loc) · 1.79 KB
/
esr-styles.css
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
/* using ubuntu font, but can easily change to arial or other */
body {
font-family: Ubuntu, helvetica, sans-serif;
}
/* heading 1 set to be ESR blue */
h1 {
color: rgb(0, 151, 219);
font-size: 130%;
}
.title {
margin-right: 200px;
}
/* define h2 to have a bg that is ESR blue width of page */
h2 {
color: #fff;
font-size: 128%;
font-weight: bold;
padding: 10px;
line-height: 12px;
background-color: #0097db;
}
/* set span of bar for h2 across page */
h2 span {
background-color: #000;
color: #fff;
padding: 5px;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
line-height: 2;
}
h3 {
font-size: 109%;
font-weight: bold;
}
h4 {
font-size: 100%;
font-weight: bold;
font-style: italic;
}
.watermark {
opacity: 0.2;
position: fixed;
top: 50%;
left: 50%;
font-size: 500%;
color: #00407d;
}
/* information/alert boxes with different ESR colours, using white font */
.alert-custom-blue{
background-color:#0097db;
color:#fff;
}
.alert-custom-green{
background-color:#85C659;
color:#fff;
}
.alert-custom-red{
background-color:#ec1515;
color:#fff;
}
.alert-custom-yellow{
background-color:#febf2a;
color:#fff;
}
.alert-custom-purple{
background-color:#784f96;
color:#fff;
}
.alert-custom-lightgreen{
background-color:#1abcc1;
color:#fff;
}
/* remove underline on hover */
a:hover {
text-decoration: none;
}
/* Change TOC hover to ESR blue */
.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
background-color: #0097db;
}
/* table caption formatting */
caption {
color:rgb(77, 77, 77);
font-size: 1.0em;
font-weight: bold;
font-style: italic;
}
/* figure caption formatting */
p.caption {
color:rgb(77, 77, 77);
font-size: 1.0em;
font-weight: bold;
font-style: italic;
}