Skip to content

Commit 70d0df2

Browse files
committed
consolidate css into the components folder
1 parent 2c7e317 commit 70d0df2

13 files changed

Lines changed: 30 additions & 49 deletions

File tree

_includes/head.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@
4949
charset="utf-8"
5050
></script>
5151
<link rel="stylesheet" href="/assets/css/all.css" />
52-
<link rel="stylesheet" href="/css/styles.css" />
53-
<link rel="stylesheet" href="/css/annotate.css" />
52+
<link rel="stylesheet" href="/assets/css/styles.css" />
53+
<link rel="stylesheet" href="/assets/css/annotate.css" />
5454
{% if page.image_wall %}
55-
<link rel="stylesheet" href="/css/image-wall.css" />
55+
<link rel="stylesheet" href="/assets/css/image-wall.css" />
5656
{% endif %}
5757
{% if page.image_stack %}
58-
<link rel="stylesheet" href="/css/image-stack.css" />
58+
<link rel="stylesheet" href="/assets/css/image-stack.css" />
5959
{% endif %}
6060
{% if page.image_comparison %}
61-
<link rel="stylesheet" href="/css/image-comparison.css" />
61+
<link rel="stylesheet" href="/assets/css/image-comparison.css" />
6262
{% endif %}
6363
<!-- Matomo -->
6464
<script type="text/javascript">

_sass/base/_general.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
html,
22
body {
33
height: 100%;
4-
54
}
65

76
body {
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
---
2-
---
3-
41
.insert-label {
52
position: relative;
63
display: inline-block;
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
---
2-
---
3-
41
@import "base/config";
52

63
.image-comparison-slider {
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
---
2-
---
3-
41
.image-stack-wrap {
52
// margin-top: 12px;
63
}
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
---
2-
---
3-
41
.image-wall-modal {
52
max-height: calc(100vh - 132px);
63
border-radius: 18px;
Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
1-
---
2-
---
3-
41
@import "main";
52

63
@font-face {
74
font-family: "sources-extralight";
8-
src: url("../assets/webfonts/sourcesanspro-extralight-webfont.woff");
5+
src: url("../webfonts/sourcesanspro-extralight-webfont.woff");
96
}
107

118
@font-face {
129
font-family: "sources-bold";
13-
src: url("../assets/webfonts/sourcesanspro-bold-webfont.woff");
10+
src: url("../webfonts/sourcesanspro-bold-webfont.woff");
1411
}
1512

1613
@font-face {
1714
font-family: "sources-regular";
18-
src: url("../assets/webfonts/sourcesanspro-regular-webfont.woff");
15+
src: url("../webfonts/sourcesanspro-regular-webfont.woff");
1916
}
2017

2118
@font-face {
2219
font-family: "desyrel";
23-
src: url("../assets/webfonts/desyrel.woff2") format("woff2"),
24-
url("../assets/webfonts/desyrel.woff") format("woff");
20+
src: url("../webfonts/desyrel.woff2") format("woff2"),
21+
url("../webfonts/desyrel.woff") format("woff");
2522
font-display: swap;
2623
}
2724

assets/css/annotate.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
---
3+
4+
@import "components/annotate";

assets/css/image-comparison.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
---
3+
4+
@import "components/image-comparison";

assets/css/image-stack.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
---
3+
4+
@import "components/image-stack";

0 commit comments

Comments
 (0)