Move color definitions from common.css to ycdl.css.

This commit is contained in:
voussoir 2020-09-25 16:25:39 -07:00
parent 38c7226ec2
commit e584e05f5e
2 changed files with 16 additions and 15 deletions

View file

@ -1,17 +1,3 @@
:root
{
--color_text_normal: black;
--color_text_link: blue;
--color_textfields: white;
--color_text_placeholder: gray;
--color_transparency: rgba(0, 0, 0, 0.1);
--color_dropshadow: rgba(0, 0, 0, 0.25);
--color_shadow: rgba(0, 0, 0, 0.5);
--color_highlight: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 800px) @media screen and (min-width: 800px)
{ {
:root :root
@ -244,7 +230,7 @@ button:active
} }
.message_bubble * .message_bubble *
{ {
color: var(--color_text_normal); color: var(--color_text_bubble);
} }
.message_positive .message_positive
{ {

View file

@ -1,3 +1,18 @@
:root
{
--color_text_normal: black;
--color_text_link: blue;
--color_text_bubble: var(--color_text_normal);
--color_textfields: white;
--color_text_placeholder: gray;
--color_transparency: rgba(0, 0, 0, 0.1);
--color_dropshadow: rgba(0, 0, 0, 0.25);
--color_shadow: rgba(0, 0, 0, 0.5);
--color_highlight: rgba(255, 255, 255, 0.5);
}
#content_body #content_body
{ {
justify-self: center; justify-self: center;