Error handling

This commit is contained in:
Scott E. Graves
2018-10-02 22:59:33 -05:00
parent 7e82690f5e
commit c55020fe0f
11 changed files with 158 additions and 64 deletions

View File

@@ -9,6 +9,7 @@
--control_dark_transparent_background: rgba(15, 15, 15, 0.8);
--text_color: rgba(200, 205, 220, 0.75);
--text_color_error: rgba(203, 120, 120, 0.75);
--text_color_hover: rgba(200, 205, 220, 0.75);
--heading_text_color: rgba(140, 169, 203, 0.75);
--heading_other_text_color: rgba(200, 205, 220, 0.75);
@@ -17,7 +18,7 @@
* {
font-family: 'Nunito', sans-serif;
font-size: 14px;
font-size: 5vh;
}
*::-moz-focus-inner {
@@ -61,3 +62,10 @@ h1 {
h2, h3 {
color: var(--heading_other_text_color);
}
p {
margin: 0;
padding: 0;
font-weight: normal;
color: var(--text_color);
}