summaryrefslogtreecommitdiff
path: root/styles.css
blob: 4f2a806b31b02d0f647a37ae2bd1c461275bf815 (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body .jumbotron {
  background-color: white;
}


.lang-slector {
	float: right;
	padding-top: 2mm;
	padding-bottom: 4mm;
	margin-left:  15px;
	margin-right: 15px;
}

html {
	overflow-y: scroll;
}

.c_acronym {
  background-color: #A5C663;
}


#body_content a,
#body_content a:link,
#body_content a:visited {
    text-decoration: underline;
    color: black;
}

#body_content a:hover {
  transition: background-color 0.3s;
  background-color: rgba(200, 200, 200, 0.5);
}

footer a,
footer a:link,
footer a:visited {
    text-decoration: underline;
    color: white;
}

footer a:hover {
  transition: background-color 0.3s;
  background-color: rgba(100, 100, 100, 0.5);
}

.c_intro {
  min-height: 97vh;
}

/* don't show the language selector in the dropdown on mobile devices,
 * since it's in the top bar already.
 */
.in .nav-lang {
  display: none;
}

.mobile-lang {
  margin-left:5px;
  margin-top: 8px;
}

#mybody {
  /* override ugly bootstrap defaults */
  color: black;
}

.btn-dark {
  background-color: #9d9d9d; 
}


#mybody nav {
 border-radius: 0px; 
}

footer {
  padding-top: 2em;
  margin-top: 2em;
  background-color: #222;
  color: white;
}


#body_content .container {
  margin-bottom: 2em;
  padding-top: 1em;
  padding-bottom: 1em;
}

#body_content {
  /* push footer down */
  min-height: 80vh;
}

.adorn_h3_bracket h3::before {
  content: "❬";
  color: #aa3939;
}

.adorn_h3_bracket h3::after {
  content: "❭";
  color: #aa3939;
}
.taler_home::before {
  content: "❬";
  color: #aa3939;
}
.taler_home::after {
  content: "❭";
  color: #aa3939;
}
.taler_home {
  font-family: 'Lucida Console', Monaco, monospace;
}

.footer-list {
  list-style: none;
}

.cushion-above {
  padding-top: 2em;
}

.cushion-below {
  padding-bottom: 2em;
}

.invert {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}