Titivillus/static/base.css

72 lines
932 B
CSS
Raw Normal View History

2018-09-19 15:56:59 -04:00
body {
margin: 0;
2018-10-03 12:17:57 -04:00
background-color: #FAFAFA;
color: #111111;
font-family: Tahoma, Helvetica, sans-serif;
}
input {
font-family: Tahoma, Helvetica, sans-serif;
}
select {
font-family: Tahoma, Helvetica, sans-serif;
background-color: #FAFAFA;
}
textarea {
background-color: #FAFAFA;
border-bottom: 1px solid #ccc;
}
a {
text-decoration: none;
color: #004070;
}
a:hover {
color: #B44444;
2018-09-19 15:56:59 -04:00
}
#globalWrapper {
display: flex;
flex-direction: column;
height: 100%;
}
2018-08-10 08:39:51 -04:00
.header {
2018-09-19 15:56:59 -04:00
position: sticky;
2018-08-10 08:39:51 -04:00
top: 0;
2018-09-19 15:56:59 -04:00
width: 100%;
2018-09-30 01:30:50 -04:00
height: 2em;
2018-10-03 12:17:57 -04:00
background-color: #FAFAFA;
2018-09-30 01:30:50 -04:00
display: flex;
align-items: center;
2018-10-03 12:17:57 -04:00
border-bottom: 1px solid #ccc;
2018-08-10 08:39:51 -04:00
}
2018-09-30 01:30:50 -04:00
.header span {
padding-right: 0.25em;
2018-09-30 15:20:42 -04:00
padding-left: 0.25em;
}
.header span span {
padding-right: 0;
padding-left: 0;
2018-08-10 08:39:51 -04:00
}
#headerHidden {
2018-09-20 13:09:24 -04:00
width: 1em;
2018-10-03 12:17:57 -04:00
border-right: 1px solid #ccc;
2018-08-10 08:39:51 -04:00
}
2018-09-19 15:56:59 -04:00
#alerts {
margin: 0;
}
#content {
flex: auto;
overflow: auto;
2018-10-03 12:17:57 -04:00
overflow-wrap: break-word;
2018-09-19 15:56:59 -04:00
}