28 lines
565 B
CSS
28 lines
565 B
CSS
|
@import url("https://unpkg.com/@catppuccin/palette/css/catppuccin.css");
|
||
|
|
||
|
:root {
|
||
|
background-color: var(--ctp-mocha-base);
|
||
|
color: var(--ctp-mocha-text);
|
||
|
font-family: sans-serif;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
div.routes {
|
||
|
justify-content: center;
|
||
|
margin-top: 1em;
|
||
|
padding: 1em;
|
||
|
background-color: var(--ctp-mocha-surface0);
|
||
|
max-width: 400px;
|
||
|
margin-left: 38.5%;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
div.route {
|
||
|
background-color: var(--ctp-mocha-surface1);
|
||
|
padding: 5px;
|
||
|
border-radius: 10px;
|
||
|
}
|