etiquette/static/common.css

202 lines
3.6 KiB
CSS
Raw Normal View History

2016-09-18 08:33:46 +00:00
body
{
display: flex;
flex-direction: column;
background-color:#00d8f4;
margin: 8px;
}
li
{
position:relative;
}
#header
{
display: flex;
flex-direction: row;
justify-content: center;
align-content: center;
margin-bottom: 4px;
}
.header_element
{
display: flex;
justify-content: center;
flex: 1;
background-color: rgba(0, 0, 0, 0.1);
}
.header_element:hover
{
background-color: #ffffd4;
}
#content_body
{
flex: 0 0 auto;
display: flex;
flex-direction: row;
}
.add_tag_button, #search_go_button
{
border-top: 2px solid #c2ffc3;
border-left: 2px solid #c2ffc3;
border-right: 2px solid #259427;
border-bottom: 2px solid #259427;
background-color: #6df16f;
}
.add_tag_button:active, #search_go_button:active
{
border-top: 2px solid #259427;
border-left: 2px solid #259427;
border-right: 2px solid #c2ffc3;
border-bottom: 2px solid #c2ffc3;
}
.remove_tag_button,
.remove_tag_button_perm
{
position: absolute;
top: 3px;
width: 18px;
height: 14px;
padding: 0;
vertical-align: middle;
background-color: #ff4949;
border-top: 2px solid #ffacac;
border-left: 2px solid #ffacac;
border-right: 2px solid #bd1b1b;
border-bottom: 2px solid #bd1b1b;
}
.remove_tag_button
{
display: none;
}
.tag_object:hover + .remove_tag_button,
.remove_tag_button:hover,
.remove_tag_button_perm:hover
{
display:inline;
}
.remove_tag_button:active,
.remove_tag_button_perm:active
{
border-top: 2px solid #bd1b1b;
border-left: 2px solid #bd1b1b;
border-right: 2px solid #ffacac;
border-bottom: 2px solid #ffacac;
}
2016-11-07 02:00:30 +00:00
.photo_card_list
{
background-color: #ffffd4;
display: block;
padding: 4px;
margin: 8px;
}
.photo_card_grid
2016-09-18 08:33:46 +00:00
{
vertical-align: middle;
position: relative;
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
display: inline-block;
min-width: 150px;
max-width: 300px;
height: 200px;
background-color: #ffffd4;
padding: 8px;
margin: 8px;
border-radius: 8px;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_thumb
2016-09-18 08:33:46 +00:00
{
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 150px;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_thumb a
2016-09-18 08:33:46 +00:00
{
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 150px;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_thumb img
2016-09-18 08:33:46 +00:00
{
max-width: 100%;
max-height: 100%;
height: auto;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_info
2016-09-18 08:33:46 +00:00
{
position: absolute;
top: 160px;
bottom: 0px;
left: 8px;
right: 8px;
font-size: 0.8em;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_info a
2016-09-18 08:33:46 +00:00
{
position: absolute;
max-height: 30px;
overflow: hidden;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_info a:hover
2016-09-18 08:33:46 +00:00
{
max-height: 100%;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_file_metadata
2016-09-18 08:33:46 +00:00
{
position: absolute;
bottom: 0;
right: 0;
}
2016-11-07 02:00:30 +00:00
.photo_card_grid_tags
2016-10-10 03:50:13 +00:00
{
position: absolute;
bottom: 0;
left: 0;
}
2016-09-18 08:33:46 +00:00
.tag_object
{
font-size: 0.9em;
background-color: #fff;
border-radius: 2px;
text-decoration: none;
font-family: monospace;
line-height: 1.3;
}
#message_area
{
overflow-y: auto;
background-color: rgba(0, 0, 0, 0.1);
width: 100%;
height: 100%;
max-height: 300px;
display: flex;
flex-direction: column;
justify-content center;
align-items: center;
flex: 2;
}
.message_positive, .message_negative
2016-09-18 08:33:46 +00:00
{
width: 80%;
margin: 4px;
}
.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
}
@font-face {
font-family: 'Highlander';
src: url('/static/Highlander_Normal.ttf');
2016-09-18 08:33:46 +00:00
}