jekyll-theme-fos 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_config.yml +47 -0
  5. data/_data/analytics.yml +6 -0
  6. data/_data/comments.yml +4 -0
  7. data/_data/navigation.yml +5 -0
  8. data/_data/posts.yml +1 -0
  9. data/_data/social-networks.yml +67 -0
  10. data/_data/theme.yml +17 -0
  11. data/_includes/body-end.html +12 -0
  12. data/_includes/body-start.html +1 -0
  13. data/_includes/comments.html +5 -0
  14. data/_includes/copyright.html +3 -0
  15. data/_includes/date.html +1 -0
  16. data/_includes/disqus.html +28 -0
  17. data/_includes/facebook-og.html +10 -0
  18. data/_includes/footer.html +8 -0
  19. data/_includes/google-tm-body.html +11 -0
  20. data/_includes/google-tm-gtag.html +12 -0
  21. data/_includes/google-tm-head.html +11 -0
  22. data/_includes/head.html +40 -0
  23. data/_includes/image.html +8 -0
  24. data/_includes/menu-icon.html +5 -0
  25. data/_includes/meta.html +5 -0
  26. data/_includes/navigation.html +15 -0
  27. data/_includes/page-title.html +5 -0
  28. data/_includes/post-title.html +14 -0
  29. data/_includes/share.html +10 -0
  30. data/_includes/social-icons.html +10 -0
  31. data/_includes/subscribe-form.html +7 -0
  32. data/_includes/tags.html +7 -0
  33. data/_includes/top-bar.html +10 -0
  34. data/_includes/twitter-summary.html +7 -0
  35. data/_layouts/base.html +30 -0
  36. data/_layouts/page.html +22 -0
  37. data/_layouts/post.html +21 -0
  38. data/_sass/.DS_Store +0 -0
  39. data/_sass/_highlight.scss +13 -0
  40. data/_sass/_typography.scss +271 -0
  41. data/_sass/bootstrap/_alert.scss +51 -0
  42. data/_sass/bootstrap/_badge.scss +53 -0
  43. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  44. data/_sass/bootstrap/_button-group.scss +163 -0
  45. data/_sass/bootstrap/_buttons.scss +140 -0
  46. data/_sass/bootstrap/_card.scss +310 -0
  47. data/_sass/bootstrap/_carousel.scss +198 -0
  48. data/_sass/bootstrap/_close.scss +44 -0
  49. data/_sass/bootstrap/_code.scss +48 -0
  50. data/_sass/bootstrap/_custom-forms.scss +507 -0
  51. data/_sass/bootstrap/_dropdown.scss +191 -0
  52. data/_sass/bootstrap/_forms.scss +334 -0
  53. data/_sass/bootstrap/_functions.scss +86 -0
  54. data/_sass/bootstrap/_grid.scss +52 -0
  55. data/_sass/bootstrap/_images.scss +42 -0
  56. data/_sass/bootstrap/_input-group.scss +193 -0
  57. data/_sass/bootstrap/_jumbotron.scss +16 -0
  58. data/_sass/bootstrap/_list-group.scss +121 -0
  59. data/_sass/bootstrap/_media.scss +8 -0
  60. data/_sass/bootstrap/_mixins.scss +41 -0
  61. data/_sass/bootstrap/_modal.scss +186 -0
  62. data/_sass/bootstrap/_nav.scss +120 -0
  63. data/_sass/bootstrap/_navbar.scss +299 -0
  64. data/_sass/bootstrap/_pagination.scss +78 -0
  65. data/_sass/bootstrap/_popover.scss +183 -0
  66. data/_sass/bootstrap/_print.scss +141 -0
  67. data/_sass/bootstrap/_progress.scss +34 -0
  68. data/_sass/bootstrap/_reboot.scss +462 -0
  69. data/_sass/bootstrap/_root.scss +19 -0
  70. data/_sass/bootstrap/_spinners.scss +53 -0
  71. data/_sass/bootstrap/_tables.scss +187 -0
  72. data/_sass/bootstrap/_toasts.scss +43 -0
  73. data/_sass/bootstrap/_tooltip.scss +115 -0
  74. data/_sass/bootstrap/_transitions.scss +22 -0
  75. data/_sass/bootstrap/_type.scss +125 -0
  76. data/_sass/bootstrap/_utilities.scss +16 -0
  77. data/_sass/bootstrap/_variables.scss +1091 -0
  78. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  79. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  80. data/_sass/bootstrap/bootstrap.scss +44 -0
  81. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  82. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  83. data/_sass/bootstrap/mixins/_badge.scss +11 -0
  84. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  85. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  86. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  87. data/_sass/bootstrap/mixins/_buttons.scss +111 -0
  88. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  89. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  90. data/_sass/bootstrap/mixins/_float.scss +11 -0
  91. data/_sass/bootstrap/mixins/_forms.scss +198 -0
  92. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  93. data/_sass/bootstrap/mixins/_grid-framework.scss +66 -0
  94. data/_sass/bootstrap/mixins/_grid.scss +51 -0
  95. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  96. data/_sass/bootstrap/mixins/_image.scss +36 -0
  97. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  98. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  99. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  100. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  101. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  102. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  103. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  104. data/_sass/bootstrap/mixins/_size.scss +6 -0
  105. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  106. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  107. data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
  108. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  109. data/_sass/bootstrap/mixins/_transition.scss +16 -0
  110. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  111. data/_sass/bootstrap/utilities/_align.scss +8 -0
  112. data/_sass/bootstrap/utilities/_background.scss +19 -0
  113. data/_sass/bootstrap/utilities/_borders.scss +63 -0
  114. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  115. data/_sass/bootstrap/utilities/_display.scss +38 -0
  116. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  117. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  118. data/_sass/bootstrap/utilities/_float.scss +9 -0
  119. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  120. data/_sass/bootstrap/utilities/_position.scss +32 -0
  121. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  122. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  123. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  124. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  125. data/_sass/bootstrap/utilities/_text.scss +67 -0
  126. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  127. data/assets/css/.DS_Store +0 -0
  128. data/assets/css/fontisto.min.css +5 -0
  129. data/assets/css/fonts.css +45 -0
  130. data/assets/css/style.scss +529 -0
  131. data/assets/fonts/.DS_Store +0 -0
  132. data/assets/fonts/et-book/.DS_Store +0 -0
  133. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot +0 -0
  134. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg +243 -0
  135. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf +0 -0
  136. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff +0 -0
  137. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot +0 -0
  138. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg +244 -0
  139. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf +0 -0
  140. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff +0 -0
  141. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot +0 -0
  142. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg +244 -0
  143. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf +0 -0
  144. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff +0 -0
  145. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot +0 -0
  146. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg +244 -0
  147. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf +0 -0
  148. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff +0 -0
  149. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot +0 -0
  150. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg +243 -0
  151. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf +0 -0
  152. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff +0 -0
  153. data/assets/fonts/fontisto/fontisto.ttf +0 -0
  154. data/assets/fonts/icons/.DS_Store +0 -0
  155. data/assets/fonts/icons/ARROW.svg +9 -0
  156. data/assets/fonts/icons/HAMBURGER MENU.svg +9 -0
  157. data/assets/fonts/icons/d91782eeaa98bfeb4e950cd7dd135027.svg +3 -0
  158. data/assets/fonts/icons/ef3920d8d3ea164b058f52ab55f5ca11.html +4 -0
  159. data/assets/fonts/icons/facebook.svg +1 -0
  160. data/assets/fonts/icons/github (2).svg +1 -0
  161. data/assets/fonts/icons/menu.svg +3 -0
  162. data/assets/fonts/icons/method-draw-image.svg +0 -0
  163. data/assets/fonts/icons/so-icon.html +139 -0
  164. data/assets/fonts/icons/user.svg +0 -0
  165. data/assets/img/.DS_Store +0 -0
  166. data/assets/js/bootstrap.min.js +7 -0
  167. data/assets/js/jquery-3.3.1.min.js +2 -0
  168. data/assets/js/main.js +91 -0
  169. data/assets/js/popper.min.js +5 -0
  170. metadata +309 -0
@@ -0,0 +1,5 @@
1
+ {%- if page.title -%}
2
+ <header class="fos-title">
3
+ <h2>{{- page.title -}}</h2>
4
+ </header>
5
+ {%- endif -%}
@@ -0,0 +1,14 @@
1
+ {%- if page.title -%}
2
+ <div class="fos-title row">
3
+ <div class="fos-fixed-col d-flex justify-content-start align-items-start">
4
+ {%- include menu-icon.html -%}
5
+ </div>
6
+
7
+ <header class="col">
8
+ <h1>{{- page.title -}}</h1>
9
+ {%- if page.description -%}
10
+ <p class="subtitle">{{- page.description -}}</p>
11
+ {%- endif -%}
12
+ </header>
13
+ </div>
14
+ {%- endif -%}
@@ -0,0 +1,10 @@
1
+ {%- if page.page-share && site.data.social-networks.page-share -%}
2
+ <ul class="fos-social-icons d-flex pl-0">
3
+ {%- for share in site.data.social-networks.page-share -%}
4
+ {%- assign element = site.data.social-networks[share] -%}
5
+ {%- if element && element.share-url -%}
6
+ <li><a href="{{- element.share-url -}}{{- site.url -}}{{- page.url -}}" rel="noopener noreferrer" target="_blank"><i class="{{- element.icon -}}"></i></a></li>
7
+ {%- endif -%}
8
+ {%- endfor -%}
9
+ </ul>
10
+ {%- endif -%}
@@ -0,0 +1,10 @@
1
+ {%- if site.data.social-networks.links -%}
2
+ <ul class="fos-social-icons d-flex pl-0">
3
+ {%- for link in site.data.social-networks.links -%}
4
+ {%- assign element = site.data.social-networks[link] -%}
5
+ {%- if element -%}
6
+ <li><a href="{{- element.url -}}" rel="noopener noreferrer" target="_blank"><i class="{{- element.icon -}}"></i></a></li>
7
+ {%- endif -%}
8
+ {%- endfor -%}
9
+ </ul>
10
+ {%- endif -%}
@@ -0,0 +1,7 @@
1
+ <div class="d-flex flex-column align-items-start justify-content-start">
2
+ <p class="w-100">Interested in knowing what's going on here?</p>
3
+ <form class="form w-100 d-flex">
4
+ <input type="email" class="form-control w-100 mr-2" name="email" placeholder="Your email">
5
+ <input type="submit" value="Subscribe" class="btn btn-primary submit"></input>
6
+ </form>
7
+ </div>
@@ -0,0 +1,7 @@
1
+ {%- if page.tags -%}
2
+ <div class="fos-tags">
3
+ {%- for tag in page.tags -%}
4
+ <a href="{{- site.baseurl -}}/tags#{{- tag -}}">#{{- tag -}}</a>
5
+ {%- endfor -%}
6
+ </div>
7
+ {%- endif -%}
@@ -0,0 +1,10 @@
1
+ <header class="fos-topbar row">
2
+ <div class="fos-fixed-col d-flex justify-content-start align-items-start">
3
+ {%- include menu-icon.html -%}
4
+ </div>
5
+
6
+ <div class="fos-topbar__brand col d-flex flex-column align-items-start justify-content-start">
7
+ <a href="/">{{- site.title | upcase -}}</a>
8
+ <p>{{- site.description -}}</p>
9
+ </div>
10
+ </header>
@@ -0,0 +1,7 @@
1
+ <meta name="twitter:card" content="summary" />
2
+ {%- if site.data.social-networks.twitter.username -%}
3
+ <meta name="twitter:site" content="@{{- site.data.social-networks.twitter.username -}}" />
4
+ {%- endif -%}
5
+ <meta property="twitter:title" content="{{- page.title -}}" />
6
+ <meta property="twitter:description" content="{{- page.description -}}">
7
+ <meta property="twitter:image" content="{{- site.url -}}{{- page.image -}}" />
@@ -0,0 +1,30 @@
1
+ ---
2
+ css:
3
+ - "/assets/css/fontisto.min.css"
4
+ - "/assets/css/style.css"
5
+ js:
6
+ - "/assets/js/jquery-3.3.1.min.js"
7
+ - "/assets/js/popper.min.js"
8
+ - "/assets/js/bootstrap.min.js"
9
+ - "/assets/js/main.js"
10
+ ---
11
+
12
+ <!DOCTYPE html>
13
+ <html lang="en">
14
+
15
+ <head>
16
+ {%- include head.html -%}
17
+ </head>
18
+
19
+ <body>
20
+
21
+ {%- include body-start.html -%}
22
+
23
+ {{- content -}}
24
+
25
+ {%- include navigation.html -%}
26
+
27
+ {%- include body-end.html -%}
28
+
29
+ </body>
30
+ </html>
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: base
3
+ ---
4
+
5
+ <div class="fos-container fos-page container">
6
+
7
+ {%- include top-bar.html -%}
8
+
9
+ <main class="row">
10
+ <div class="fos-fixed-col"></div>
11
+ <div class="col">
12
+ {%- include page-title.html -%}
13
+
14
+ {{- content -}}
15
+
16
+ {%- include meta.html -%}
17
+ {%- include comments.html -%}
18
+ </div>
19
+ </main>
20
+
21
+ {%- include footer.html -%}
22
+ </div>
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: base
3
+ ---
4
+
5
+ <div class="fos-container fos-post container">
6
+
7
+ {%- include top-bar.html -%}
8
+ {%- include post-title.html -%}
9
+
10
+ <main class="row">
11
+ <div class="fos-fixed-col"></div>
12
+ <div class="col">
13
+ {{- content -}}
14
+
15
+ {%- include meta.html -%}
16
+ {%- include comments.html -%}
17
+ </div>
18
+ </main>
19
+
20
+ {%- include footer.html -%}
21
+ </div>
Binary file
@@ -0,0 +1,13 @@
1
+ @charset "UTF-8";
2
+
3
+ .highlight {
4
+ .kn,
5
+ .kd,
6
+ .kt {
7
+ font-weight: bold;
8
+ }
9
+
10
+ .c {
11
+ color: $grey;
12
+ }
13
+ }
@@ -0,0 +1,271 @@
1
+ @charset "UTF-8";
2
+
3
+ body {
4
+ border-top: 1px solid $primary;
5
+ font-family: $font-family-base;
6
+ font-size: $p-font-size;
7
+ color: $body-color;
8
+ background-color: $body-bg;
9
+ }
10
+
11
+ h1 {
12
+ font-family: $font-family-header, serif;
13
+ font-size: $h1-font-size;
14
+ font-weight: $headings-font-weight;
15
+ line-height: 1.2;
16
+ margin-top: 7.4rem;
17
+ margin-bottom: 2rem;
18
+ }
19
+
20
+ h2 {
21
+ font-family: $font-family-header, serif;
22
+ font-size: $h2-font-size;
23
+ font-weight: $headings-font-weight;
24
+ line-height: 1.2;
25
+ margin-top: 2.8rem;
26
+ margin-bottom: 1rem;
27
+ }
28
+
29
+ h3 {
30
+ font-family: $font-family-header, serif;
31
+ font-style: italic;
32
+ font-size: $h3-font-size;
33
+ font-weight: $headings-font-weight;
34
+ line-height: 1.2;
35
+ margin-top: 2.8rem;
36
+ margin-bottom: 1rem;
37
+ }
38
+
39
+ p {
40
+ font-family: $font-family-base, serif;
41
+ font-size: $p-font-size;
42
+ font-weight: $font-weight-normal;
43
+ line-height: 1.5;
44
+ margin-bottom: 1.4rem;
45
+
46
+ &.subtitle {
47
+ font-family: $font-family-header, serif;
48
+ font-size: $subtitle-font-size;
49
+ font-weight: $headings-font-weight;
50
+ font-style: italic;
51
+ line-height: 1.2;
52
+ margin-top: -1.2rem;
53
+ margin-bottom: 2.8rem;
54
+ }
55
+ }
56
+
57
+ .numeral {
58
+ font-family: $font-family-numeral;
59
+ }
60
+
61
+ ::selection {
62
+ background: $selection-color;
63
+ }
64
+
65
+ a {
66
+ &::selection {
67
+ color: $black;
68
+ }
69
+ }
70
+
71
+ blockquote {
72
+ margin-top: 2.8rem;
73
+ margin-bottom: 2.8rem;
74
+ // margin-left: 1.4rem;
75
+ padding-left: 1.4rem;
76
+ border-left: 1px solid $grey;
77
+
78
+ p {
79
+ font-style: italic
80
+ }
81
+
82
+ footer {
83
+ font-style: normal;
84
+ text-align: right;
85
+
86
+ cite: {
87
+ font-style: italic;
88
+ }
89
+ }
90
+ }
91
+
92
+ code {
93
+ font-family: $font-family-monospace;
94
+ font-size: 1rem;
95
+ font-style: normal;
96
+ font-weight: 400;
97
+ line-height: 1.4;
98
+ color: $black;
99
+ background-color: $secondary;
100
+ }
101
+
102
+ pre {
103
+ margin-top: 2.8rem;
104
+ margin-bottom: 2.8rem;
105
+ padding-left: 1.4rem;
106
+ border-left: 1px solid $grey;
107
+ line-height: 1.4;
108
+
109
+ code {
110
+ font-size: 1rem;
111
+ }
112
+ }
113
+
114
+ ol, ul {
115
+ font-family: $font-family-base, serif;
116
+ font-size: $p-font-size;
117
+ font-weight: $font-weight-normal;
118
+ line-height: 1.5;
119
+ margin-bottom: 1.4rem;
120
+
121
+ li {
122
+ &:not(:first-child) {
123
+ margin-top: 0.7rem;
124
+ }
125
+ }
126
+ }
127
+
128
+ figure {
129
+ padding: 0;
130
+ border: 0;
131
+ margin-top: 2.8rem;
132
+ margin-bottom: 2.8rem;
133
+ text-align: center;
134
+
135
+ img {
136
+ max-width: 100%;
137
+ }
138
+
139
+ figcaption {
140
+ margin-top: 1.4rem;
141
+ font-size: 1.1rem;
142
+ line-height: 1.4;
143
+ color: $grey;
144
+ }
145
+ }
146
+
147
+ @mixin underline($background-color, $underline-color) {
148
+ background: -webkit-linear-gradient($background-color, $background-color),
149
+ -webkit-linear-gradient($background-color, $background-color),
150
+ -webkit-linear-gradient($underline-color, $underline-color);
151
+ background: linear-gradient($background-color, $background-color),
152
+ linear-gradient($background-color, $background-color),
153
+ linear-gradient($underline-color, $underline-color);
154
+ -webkit-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
155
+ -moz-background-size: 0.05em 1px, 0.05em 1px, 1px 1px;
156
+ background-size: 0.05rem 1px, 0.05rem 1px, 1px 1px;
157
+ background-repeat: no-repeat, no-repeat, repeat-x;
158
+ text-shadow: 0.03rem 0 $background-color,
159
+ -0.03rem 0 $background-color,
160
+ 0 0.03rem $background-color,
161
+ 0 -0.03rem $background-color,
162
+ 0.06rem 0 $background-color,
163
+ -0.06rem 0 $background-color,
164
+ 0.09rem 0 $background-color,
165
+ -0.09rem 0 $background-color,
166
+ 0.12rem 0 $background-color,
167
+ -0.12rem 0 $background-color,
168
+ 0.15rem 0 $background-color,
169
+ -0.15rem 0 $background-color;
170
+ background-position: 0% 93%, 100% 93%, 0% 93%;
171
+ line-height: 1.5rem;
172
+
173
+ &::selection {
174
+ text-shadow: 0.03rem 0 $selection-color,
175
+ -0.03rem 0 $selection-color,
176
+ 0 0.03rem $selection-color,
177
+ 0 -0.03rem $selection-color,
178
+ 0.06rem 0 $selection-color,
179
+ -0.06rem 0 $selection-color,
180
+ 0.09rem 0 $selection-color,
181
+ -0.09rem 0 $selection-color,
182
+ 0.12rem 0 $selection-color,
183
+ -0.12rem 0 $selection-color,
184
+ 0.15rem 0 $selection-color,
185
+ -0.15rem 0 $selection-color;
186
+ background: $selection-color;
187
+ }
188
+ }
189
+
190
+ @mixin reset-underline {
191
+ background: none;
192
+ text-shadow: none;
193
+ }
194
+
195
+ .underline {
196
+ @include underline($secondary, $black);
197
+ }
198
+
199
+ .reset-underline {
200
+ @include reset-underline();
201
+ }
202
+
203
+ a {
204
+ &:link {
205
+ color: $link-color;
206
+ text-decoration: $link-decoration;
207
+ }
208
+
209
+ &:visited {
210
+ color: $link-color;
211
+ }
212
+
213
+ &:hover {
214
+ color: $link-hover-color;
215
+ text-decoration: $link-hover-decoration;
216
+ }
217
+ }
218
+
219
+ p {
220
+ a {
221
+ @include underline($secondary, $black);
222
+ }
223
+ }
224
+
225
+ @mixin header-link {
226
+ &:link {
227
+ color: $black;
228
+ text-decoration: none;
229
+ }
230
+
231
+ &:hover {
232
+ color: $primary;
233
+ text-decoration: none;
234
+ }
235
+ }
236
+
237
+ .header-link {
238
+ @include header-link();
239
+ }
240
+
241
+ h1, h2, h3, h4, h5, h6 {
242
+ a {
243
+ @include header-link();
244
+ }
245
+ }
246
+
247
+ .color-primary {
248
+ color: $primary;
249
+ }
250
+
251
+ .color-secondary {
252
+ color: $secondary;
253
+ }
254
+
255
+ .color-grey {
256
+ color: $grey;
257
+ }
258
+
259
+ .color-black {
260
+ color: $black;
261
+ }
262
+
263
+ .color-white {
264
+ color: $white;
265
+ }
266
+
267
+ .bullet {
268
+ &:before {
269
+ content:"•\0000a0\0000a0";
270
+ }
271
+ }