Skip to content

Commit dbfe7c9

Browse files
authored
Merge pull request #370 from citation-file-format/318-footer-link
fix footer link
2 parents 06892d6 + edfc8d4 commit dbfe7c9

2 files changed

Lines changed: 35 additions & 26 deletions

File tree

src/components/Footer.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<template>
2-
<a
3-
href="https://esciencecenter.nl"
4-
target="_blank"
5-
>
6-
<img src="~assets/nlesc-logo.svg">
7-
</a>
2+
<div id="logo">
3+
<a
4+
href="https://esciencecenter.nl"
5+
target="_blank"
6+
>
7+
<img src="~assets/nlesc-logo.svg">
8+
</a>
9+
</div>
810
</template>
911

1012
<script lang="ts">

src/css/app.css

Lines changed: 27 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ body {
9292
min-height: 80px;
9393
}
9494
#preview {
95-
background-color: var(--fgcolor,limegreen);
95+
background-color: var(--fgcolor, limegreen);
9696
display: flex;
9797
flex-direction: column;
9898
flex-grow: 0.5;
@@ -109,7 +109,7 @@ body {
109109
display: flex;
110110
flex-direction: column;
111111
flex-grow: 1;
112-
max-height:720px;
112+
max-height: 720px;
113113
min-height: 300px;
114114
}
115115
#preview-button-bar {
@@ -138,59 +138,66 @@ body {
138138
padding-right: 10px;
139139
width: 1900px;
140140
}
141-
141+
#logo {
142+
display: flex;
143+
flex-direction: column;
144+
justify-content: center;
145+
padding-left: 16px;
146+
width: 245px;
147+
}
142148

143149
@font-face {
144-
font-family: 'Roboto';
145-
src: url('./fonts/Roboto/Roboto-Regular.ttf');
150+
font-family: "Roboto";
151+
src: url("./fonts/Roboto/Roboto-Regular.ttf");
146152
}
147153

148154
@font-face {
149-
font-family: 'Roboto Condensed';
150-
src: url('./fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf');
155+
font-family: "Roboto Condensed";
156+
src: url("./fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf");
151157
}
152158

153159
@font-face {
154-
font-family: 'Roboto Mono';
155-
src: url('./fonts/Roboto_Mono/static/RobotoMono-Regular.ttf');
160+
font-family: "Roboto Mono";
161+
src: url("./fonts/Roboto_Mono/static/RobotoMono-Regular.ttf");
156162
}
157163

158-
159-
p, body {
160-
font-family: 'Roboto Condensed', sans-serif;
164+
p,
165+
body {
166+
font-family: "Roboto Condensed", sans-serif;
161167
}
162168

163-
.page-title, .finish-title {
164-
font-family: 'Roboto', sans-serif;
169+
.page-title,
170+
.finish-title {
171+
font-family: "Roboto", sans-serif;
165172
color: #333;
166173
font-size: 1.4rem;
167174
font-weight: 400;
168175
margin-top: 10px;
169176
margin-bottom: 60px;
170177
}
171178
.question {
172-
font-family: 'Roboto Condensed', sans-serif;
179+
font-family: "Roboto Condensed", sans-serif;
173180
color: #333;
174181
font-size: 1.1rem;
175182
font-weight: 400;
176183
margin-top: 12px;
177184
margin-bottom: 7px;
178185
}
179186
.finish-paragraph {
180-
font-family: 'Roboto Condensed', sans-serif;
187+
font-family: "Roboto Condensed", sans-serif;
181188
color: #333;
182189
font-size: 1rem;
183190
font-weight: 400;
184191
line-height: 1.7;
185192
letter-spacing: normal;
186193
}
187194

188-
pre, .mono {
189-
font-family: 'Roboto Mono', sans-serif;
195+
pre,
196+
.mono {
197+
font-family: "Roboto Mono", sans-serif;
190198
}
191199

192-
193200
.red-border {
194-
border-color: #C10015;
201+
border-color: #c10015;
195202
border-width: 2px;
196203
}

0 commit comments

Comments
 (0)