ycdl/frontends/ycdl_flask/static/common.css

37 lines
543 B
CSS
Raw Normal View History

2016-11-29 04:16:16 +00:00
body
{
display: flex;
flex-direction: column;
background-color:#fff;
margin: 8px;
}
#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: rgba(0, 0, 0, 0.2);
}
.hidden
{
display: none;
}
2016-11-29 04:16:16 +00:00
#content_body
{
flex: 0 0 auto;
display: flex;
flex-direction: row;
}