42 lines
1.1 KiB
CSS
42 lines
1.1 KiB
CSS
/* Override this file to customise the theme's CSS for your site */
|
|
:root {
|
|
--font-monospace: "monospace", monospace;
|
|
--bg: #27272a;
|
|
--off-bg: var(--base01);
|
|
body {
|
|
font-family: var(--font-monospace);
|
|
}
|
|
.link-button-wrapper {
|
|
box-shadow:inset 0px 1px 0px 0px #000000;
|
|
border-radius: 4px;
|
|
background-color: #c9b999;
|
|
box-shadow: 0px 2px 4px gray;
|
|
display: block;
|
|
width:150px;
|
|
height: 25px;
|
|
border:1px solid #094BC0;
|
|
}
|
|
.link-button-wrapper > a {
|
|
display:inline-table;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
height: 100%;
|
|
width:100%;
|
|
text-align: center;
|
|
}
|
|
.link-button-wrapper > a > h1 {
|
|
margin: 0 auto;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
color: #000000;
|
|
font-size: 15px;
|
|
font-family: monospace;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
border-bottom: #c9b999 0.125em none;
|
|
}
|
|
a:hover {
|
|
text-decoration: none;
|
|
border-bottom: #83a598 0.125em dotted;
|
|
}
|