Add serif'd font to the text inputs
This commit is contained in:
parent
bf62907c7b
commit
0968181e06
2 changed files with 4 additions and 1 deletions
|
|
@ -217,9 +217,9 @@ h2 {
|
|||
}
|
||||
|
||||
input[type="text"] {
|
||||
font-family: var(--fonts);
|
||||
background-color: var(--board-background-alt);
|
||||
color: var(--board-background-alt-text);
|
||||
font-family: var(--input-fonts);
|
||||
text-transform: uppercase;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
|
||||
|
||||
:root {
|
||||
|
||||
/*
|
||||
The fonts and font colours the site will use
|
||||
*/
|
||||
--fonts: "Roboto", "Open Sans", sans-serif;
|
||||
--input-fonts: "Roboto Slab", var(--fonts);
|
||||
--light-font-colour: #ECE3BB;
|
||||
--dark-font-colour: #000F3D;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue