Implement styling

This commit is contained in:
Elnu 2023-06-02 12:31:13 -07:00
parent 25906df967
commit ccba51e277
7 changed files with 151 additions and 3 deletions

1
styles/css/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
*.css

34
styles/sass/style.scss Normal file
View file

@ -0,0 +1,34 @@
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background: #1e1e2e;
color: #c6d0f5;
}
b, strong {
color: #eff1f5;
}
a {
text-decoration: none;
&:hover {
border-bottom: 2px solid;
}
&.noun {
color: #a6e3a1;
}
&.adjective {
color: #f38ba8;
}
&.verb {
color: #87b0f9;
}
&.adverb {
color: #94e2d5;
}
&.particle {
color: #f9e2af;
}
&.phrase {
color: #fab387;
}
}