Skip to content

Commit 92a7dbd

Browse files
committed
update styles
1 parent dd63d9d commit 92a7dbd

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

_layouts/note.html

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
{% endfor %}
1616
{% endfor %}
1717

18-
<a href="https://drive.google.com/uc?id={{note.drive_id}}&export=download" target="_blank">Download</a>
18+
<div class = "header">
19+
<a href="/">Home</a>
20+
<a href="https://drive.google.com/uc?id={{note.drive_id}}&export=download" target="_blank">Download</a>
21+
</div>
1922

20-
<div style="width:100%;height:100%;min-height:100vh;background:white;">
21-
<iframe src="https://drive.google.com/file/d/{{note.drive_id}}/preview" style="width:100%;height:100%;min-height:100vh;"></iframe>
23+
<div class="note">
24+
<iframe class="fill" src="https://drive.google.com/file/d/{{note.drive_id}}/preview"></iframe>
2225
</div>

_sass/_base.scss

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ body {
22
// background-color: $background-color;
33
color: $text-color;
44

5-
box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.4);
6-
75
font-family: 'Raleway', sans-serif;
86
text-align: center;
97

@@ -18,6 +16,22 @@ body {
1816
// }
1917
}
2018

19+
.header {
20+
height: $header-height;
21+
}
22+
23+
.note {
24+
height: calc(100vh - #{$header-height} - 10px);
25+
width: 95vw;
26+
text-align: center;
27+
margin: auto;
28+
}
29+
30+
.fill {
31+
width: 100%;
32+
height: 100%;
33+
}
34+
2135
.home-header {
2236
padding: 100px;
2337

_sass/_vars.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ $color-2: #222222;
55
$color-4: #444444;
66
$color-6: #666666;
77

8-
$background-color: #4054b2;
9-
$text-color: #ffffff;
8+
$background-color: #eeeeee;
9+
$text-color: #424242;
1010

1111
$body-background: #eeeeee;
1212
$body-color: #424242;
1313

14+
$header-height: 50px;

0 commit comments

Comments
 (0)