summaryrefslogtreecommitdiff
path: root/_sass/_main.scss
blob: 94ac0e1a7728330e2f8d08bee78d26e006f7297b (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
* {
	box-sizing: border-box;
	font-family: "Times New Roman", Times, serif;
}

@import "normalize";

body {
	margin: 0;
	background-color: #CEF6F5;
}

.container {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 0;
}

.side {
	width: 20%;
	float: left;
	vertical-align: top;
	margin-right: 10px;
}

header .picture {
	width: 100%;
	max-width: 200px;
	height: auto;
}

nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-top: 10px;
}
nav li:before {
	content: "— ";
}

.content {
	width: 100%;
	padding-left: 20%;
}
.content-wrapper {
	padding-left: 10px;
}

footer {
	text-align: right;
	padding: 0 5px;
}

@media (max-width: 500px) {
.side {
	position: static;
	width: 100%;
	float: none;
	margin-right: 0;
	padding-left: 10px;
}
.content {
	padding-left: 0;
}
}

/* ELEMENTS */

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	margin: 0;
}
h1 { font-size: 26px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
p {
	margin: 5px 0;
}

hr {
	line-height: 1;
	border: none;
	border-top: 1px solid black;
}

blockquote {
	background-color: #58D3F7;
	margin: 10px 0;
	padding: 10px 5px;
	padding-left: 20px;
}

.video_wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56%;
}

.video_wrapper iframe {
	width: 100%;
	height: 100%;
	background-color: black;
	position: absolute;
	left: 0;
	top: 0;
}

.content img {
	max-height: 300px;
}
.content .gallery img {
	display: inline-block;
	max-height: 250px;
}

a, a:visited, a:hover, a:active {
	color: #2E9AFE;
	text-decoration: none;
}
a:hover { color: #0040FF; }
a:active { color: #0431B4; }