Move color definitions from common.css to ycdl.css.
This commit is contained in:
parent
38c7226ec2
commit
e584e05f5e
2 changed files with 16 additions and 15 deletions
|
@ -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)
|
||||
{
|
||||
:root
|
||||
|
@ -244,7 +230,7 @@ button:active
|
|||
}
|
||||
.message_bubble *
|
||||
{
|
||||
color: var(--color_text_normal);
|
||||
color: var(--color_text_bubble);
|
||||
}
|
||||
.message_positive
|
||||
{
|
||||
|
|
|
@ -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
|
||||
{
|
||||
justify-self: center;
|
||||
|
|
Loading…
Reference in a new issue