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
133
134
135
136
137
138
139
|
/**
* Typography & Text styles
*/
html {
font-size: 62.5%;
}
body {
font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
line-height: 1.6;
font-weight: 400;
font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #FFFFFF;
}
/**
* Links
*/
a {
font-weight: normal;
text-decoration: none;
color:#6738a5;
}
a:focus {
outline: thin dotted;
}
small {
font-size: 75%;
}
/**
* Headings
*/
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1;
text-rendering: optimizeLegibility; /* voodoo to enable ligatures and kerning | https://developer.mozilla.org/en-US/docs/CSS/text-rendering */
margin-top: 0;
margin-bottom: 2rem;
font-weight: 300;
}
h1 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h2 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }
h3 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h4 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }
h5 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }
h6 { font-size: 1.4rem; line-height: 1.6; letter-spacing: 0; }
/**
* Paragraphs
*/
p {
margin: 0 auto 1.5em auto; /* bottom margin for paragraphs */
}
p + p {
}
/**
* Quotes & Blockquotes
*/
q {
quotes: '\00201C' '\00201D';
}
q:before {
content: open-quote;
}
q:after {
content: close-quote;
}
blockquote {
/*background-color: #F8F8F8;*/
border-left: 2px solid #AFC0D2;
margin: 1.6em 10%;
padding: .75em 1em;
font-size:1.8rem;
}
blockquote p:last-child {
margin-bottom: 0;
}
/**
* Layout styles
*/
/* Full size background image */
html, #container, .inner { background-color:transparent;}
html {
background:url(Images/Background.jpg) center center no-repeat fixed;
background-size:cover;
}
body {
max-width:800px;
margin:25px auto;
}
header, #content, footer {
background: rgba(0,0,0,.8);
padding:25px;
color:#FFFFFF;
}
/* Menu Links */
ul.main-menu {
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: left;
list-style: none;
}
ul.main-menu li a {
margin-right:20px;
font-size:2.0rem;
border-bottom: solid transparent 3px;
color:#cfd2da;
}
ul.main-menu li a:hover {
color:#FFFFFF;
}
ul.main-menu li a.active {
color:#FFFFFF;
border-bottom-color:#6129aa;
}
/* Utility classes */
.hide {
display:none;
}
.show {
display:block;
}
|