-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.scss
94 lines (77 loc) · 1.64 KB
/
main.scss
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
---
# Only the main Sass file needs front matter (the dashes are enough)
---
$content-width: 1100px !default;
// Variables to modify font folders
$fa-font-path: "../fonts/font-awesome";
// Import partials from `sass_dir` (defaults to `_sass`)
@import "font-awesome/font-awesome";
@import "minima";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,600");
body {
font: 400 16px/1.5 "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #111;
background-color: #fdfdfd;
-webkit-text-size-adjust: 100%;
-webkit-font-feature-settings: "kern" 1;
-moz-font-feature-settings: "kern" 1;
-o-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
font-kerning: normal;
}
.site-title {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: 600;
line-height: 54px;
letter-spacing: -1px;
margin-bottom: 0;
float: left;
}
.workshop-title {
color: #085dad;
font-weight: bold;
}
.passed {
color: darkolivegreen;
}
.teaser {
width: 90%;
padding-bottom: 20px;
}
.footer-links {
font-size: 13px;
margin-bottom: $spacing-unit / 4;
}
a.page-link {
&.active {
color: darkslategrey;
font-weight: bold;
}
}
@media (max-width: 900px) {
.organizer-thumbnail {
display: none;
}
.organizer-bio {
padding-left: 3em;
}
}
.organizer-item {
line-height: 1.5em;
display: block;
display: flex;
flex-direction: row;
margin-bottom: 50px;
.organizer-thumbnail {
img {
width: 160px;
border-radius: 80px;
}
padding-left: 3em;
padding-right: 1em;
}
.organizer-bio {
width: 80%;
}
}