begin
This commit is contained in:
48
ui/_/code/shared.css
Normal file
48
ui/_/code/shared.css
Normal file
@@ -0,0 +1,48 @@
|
||||
:root {
|
||||
--green: #0B5538;
|
||||
--tan: #FFDFB4;
|
||||
--red: rgb(206, 84, 61);
|
||||
--brown: #c6a476
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Canterbury';
|
||||
src: url('/_/fonts/Canterbury/Canterbury.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'CrimsonText';
|
||||
src: url('/_/fonts/CrimsonText/CrimsonText-Regular.ttf') format('truetype');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'CrimsonText';
|
||||
src: url('/_/fonts/CrimsonText/CrimsonText-Bold.ttf') format('truetype');
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'CrimsonText', sans-serif;
|
||||
background-color: var(--tan);
|
||||
color: var(--green);
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: var(--green);
|
||||
transition: background .2s, padding .2s, color .2s;
|
||||
padding: 4px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: var(--green);
|
||||
color: var(--tan);
|
||||
padding: 1em;
|
||||
box-shadow: none;
|
||||
}
|
||||
Reference in New Issue
Block a user