etiquette/frontends/etiquette_flask/static/css/common.css

297 lines
4.7 KiB
CSS
Raw Normal View History

:root
{
--color_theme_primary: #00d8f4;
--color_theme_secondary: #ffffd4;
2018-11-05 02:36:17 +00:00
--color_tag_object_bg: #fff;
--color_tag_object_fg: blue;
--color_text_normal: black;
--color_text_bubble: black;
--color_text_link: blue;
2018-11-05 02:36:17 +00:00
--color_site_textfields: white;
--color_text_placeholder: gray;
2018-11-05 02:36:17 +00:00
--color_site_transparency: rgba(0, 0, 0, 0.1);
--color_site_dropshadow: rgba(0, 0, 0, 0.25);
--color_3d_shadow: rgba(0, 0, 0, 0.5);
--color_3d_highlight: rgba(255, 255, 255, 0.5);
--size_sticky_side: 300px;
}
html
{
height: 100vh;
}
body
{
height: 100%;
margin: 0;
}
* { color: var(--color_text_normal); }
a { color: var(--color_text_link); }
2018-11-05 02:36:17 +00:00
input, select, textarea
{
margin-top: 2px;
margin-bottom: 2px;
padding: 2px;
2018-11-05 02:36:17 +00:00
border: none;
border-radius: 2px;
background-color: var(--color_site_textfields);
}
input::placeholder, textarea::placeholder
{
color: var(--color_text_placeholder);
opacity: 1;
}
2016-09-18 08:33:46 +00:00
body
{
display: grid;
grid-template:
"header" auto
"content_body" 1fr
/1fr;
2017-03-31 02:34:39 +00:00
background-color: var(--color_theme_primary);
2016-09-18 08:33:46 +00:00
}
2016-09-18 08:33:46 +00:00
#header
{
grid-area: header;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr auto;
grid-template-rows: auto;
2017-03-31 02:34:39 +00:00
margin: 8px;
background-color: var(--color_site_transparency);
}
#content_body
{
grid-area: content_body;
display: grid;
grid-auto-rows: min-content;
margin: 8px;
margin-top: 0;
2016-09-18 08:33:46 +00:00
}
2018-08-18 05:23:40 +00:00
#header button
{
border: 0;
cursor: pointer;
background-color: transparent;
2018-08-18 05:23:40 +00:00
}
2016-09-18 08:33:46 +00:00
.header_element
{
display: flex;
flex: 1;
2017-03-31 02:34:39 +00:00
justify-content: center;
2016-09-18 08:33:46 +00:00
}
.header_element:hover
{
background-color: var(--color_theme_secondary);
2016-09-18 08:33:46 +00:00
}
2018-08-18 05:23:40 +00:00
pre
{
white-space: pre-line;
}
#left
{
grid-area: left;
}
#right
{
grid-area: right;
}
2019-08-14 20:49:08 +00:00
#content_body.sticky_side_left
{
grid-template:
"left right"
/var(--size_sticky_side) 1fr;
}
2019-08-14 20:49:08 +00:00
#content_body.sticky_side_right
2018-11-05 02:32:55 +00:00
{
grid-template:
"left right"
/1fr var(--size_sticky_side);
}
2019-08-14 20:49:08 +00:00
#content_body.sticky_side_left #left,
#content_body.sticky_side_right #right
{
display: grid;
grid-auto-rows: min-content;
z-index: 1;
2018-11-05 02:32:55 +00:00
position: fixed;
bottom: 8px;
top: 34px;
2019-08-14 20:49:08 +00:00
padding: 8px;
box-sizing: border-box;
width: var(--size_sticky_side);
2018-11-05 02:32:55 +00:00
overflow-y: auto;
background-color: var(--color_site_transparency);
}
2019-08-14 20:49:08 +00:00
#content_body.sticky_side_right #left
{
margin-right: 8px;
}
#content_body.sticky_side_left #right
{
margin-left: 8px;
}
#content_body.sticky_side_left #left
{
left: 8px;
}
2019-08-14 20:49:08 +00:00
#content_body.sticky_side_right #right
{
right: 8px;
}
2018-11-05 02:32:55 +00:00
.editor_input
{
width: 100%;
max-width: 800px;
}
.hidden
{
display: none !important;
}
2019-08-14 20:49:08 +00:00
.panel
{
background-color: var(--color_site_transparency);
border-radius: 5px;
padding: 8px;
}
button,
button *
{
color: black;
}
button:disabled
{
background-color: #cccccc !important;
}
.gray_button
{
background-color: #cccccc;
}
.green_button
2016-09-18 08:33:46 +00:00
{
background-color: #6df16f;
}
.red_button
{
background-color: #ff4949;
}
.yellow_button
{
background-color: #ffea57;
}
button
{
border-top: 2px solid var(--color_3d_highlight);
border-left: 2px solid var(--color_3d_highlight);
border-right: 2px solid var(--color_3d_shadow);
border-bottom: 2px solid var(--color_3d_shadow);
}
button:active
{
border-top: 2px solid var(--color_3d_shadow);
border-left: 2px solid var(--color_3d_shadow);
border-right: 2px solid var(--color_3d_highlight);
border-bottom: 2px solid var(--color_3d_highlight);
}
2016-09-18 08:33:46 +00:00
.remove_tag_button,
.remove_tag_button_perm
{
/*position: absolute;*/
2016-09-18 08:33:46 +00:00
top: 3px;
2017-03-31 02:34:39 +00:00
vertical-align: middle;
font-size: 7pt;
2017-03-31 02:34:39 +00:00
min-width: 18px;
min-height: 14px;
/*padding: 0;*/
2017-03-31 02:34:39 +00:00
2016-09-18 08:33:46 +00:00
}
/*
The Remove button will be display:none by default, but is shown when the tag
is hovered over.
*/
2016-09-18 08:33:46 +00:00
.remove_tag_button
{
display: none;
}
.tag_object:hover + * .remove_tag_button,
2016-09-18 08:33:46 +00:00
.tag_object:hover + .remove_tag_button,
.remove_tag_button:hover,
.remove_tag_button_perm:hover
{
display:inline;
}
2016-09-18 08:33:46 +00:00
.tag_object
{
border-radius: 2px;
2018-11-05 02:36:17 +00:00
padding-left: 2px;
padding-right: 2px;
2017-03-31 02:34:39 +00:00
2019-08-14 20:49:08 +00:00
background-color: var(--color_tag_object_bg);
color: var(--color_tag_object_fg);
2017-03-31 02:34:39 +00:00
font-size: 0.9em;
2016-09-18 08:33:46 +00:00
text-decoration: none;
font-family: monospace;
line-height: 1.3;
}
#message_area
{
display: flex;
2017-03-31 02:34:39 +00:00
flex: 2;
flex-direction: column;
align-items: center;
2017-03-31 02:34:39 +00:00
overflow-y: auto;
background-color: var(--color_site_transparency);
}
.message_bubble
2016-09-18 08:33:46 +00:00
{
width: 80%;
margin: 4px;
2017-03-31 02:34:39 +00:00
word-wrap: break-word;
2016-09-18 08:33:46 +00:00
}
2019-08-14 20:49:08 +00:00
.message_bubble *
{
color: var(--color_text_bubble);
}
.message_positive
2016-09-18 08:33:46 +00:00
{
background-color: #afa;
}
.message_negative
2016-09-18 08:33:46 +00:00
{
background-color: #faa;
2016-11-07 02:00:30 +00:00
}