Fix size of home page paths
This commit is contained in:
parent
444c64b55c
commit
336efea43b
2 changed files with 19 additions and 1 deletions
|
@ -18,6 +18,14 @@
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
a {
|
||||||
|
text-decoration: inherit;
|
||||||
|
color: inherit;
|
||||||
|
cursor: auto;
|
||||||
|
}
|
||||||
|
.bold {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
.route-card {
|
.route-card {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -30,6 +38,10 @@
|
||||||
width: 90%;
|
width: 90%;
|
||||||
display: flex;
|
display: flex;
|
||||||
background-color: var(--card-background-color);
|
background-color: var(--card-background-color);
|
||||||
|
|
||||||
|
}
|
||||||
|
.route-card-center {
|
||||||
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.route-card > * {
|
.route-card > * {
|
||||||
|
@ -64,7 +76,7 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
font-size: 20px;
|
font-size: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.route-card .name > * {
|
.route-card .name > * {
|
||||||
|
|
|
@ -18,8 +18,14 @@
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
header {
|
||||||
|
text-align: center;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
}
|
||||||
main {
|
main {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 72vh;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
font-family: 'Roboto-Regular';
|
font-family: 'Roboto-Regular';
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
Loading…
Reference in a new issue