This repository has been archived on 2025-09-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
repertory-ui/src/index.css
Scott E. Graves c55020fe0f Error handling
2018-10-02 22:59:33 -05:00

72 lines
1.3 KiB
CSS

:root {
--border_radius: 4px;
--control_background: rgba(150, 150, 190, .15);
--control_background_hover: rgba(150, 150, 190, .3);
--control_border: 1px solid rgba(70, 70, 70, 0.9);
--control_box_shadow: 1px 1px 1px black;
--control_transparent_background: rgba(60, 60, 70, 0.4);
--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);
--text_color_transition: color 0.3s;
}
* {
font-family: 'Nunito', sans-serif;
font-size: 5vh;
}
*::-moz-focus-inner {
border: 0;
}
a {
outline: 0;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
color: var(--text_color);
}
p {
padding: 0;
margin: 0;
color: var(--text_color);
font-size: medium;
font-weight: bold;
text-align: center;
}
h1, h2, h3 {
padding: 0;
margin: 0;
font-weight: bold;
text-decoration: none;
white-space: pre;
text-align: left;
}
h1 {
color: var(--heading_text_color);
}
h2, h3 {
color: var(--heading_other_text_color);
}
p {
margin: 0;
padding: 0;
font-weight: normal;
color: var(--text_color);
}