TaskFloor/static/css/app.css

41 lines
717 B
CSS
Raw Normal View History

2017-04-24 17:13:08 -06:00
.banner-image {
max-height: 100px;
margin: 2em auto;
2017-05-13 14:30:08 -06:00
border: 1px solid grey;
border-radius: 12px;
2017-04-24 17:13:08 -06:00
}
.navbar-brand {
font-size: 110%;
}
.footer {
margin-top: 10em;
text-align: center;
2017-05-22 02:58:12 -06:00
}
.message-content {
overflow-wrap: break-word;
}
.task-description {
/* Using !important in case a "smart" guy messes with inline CSS, to make his life harder */
overflow-wrap: break-word !important;
2017-07-01 00:28:07 -06:00
}
@media screen and (max-width: 767px) {
button.navbar-toggle[data-toggle="collapse"] {
float: left;
margin-left: 15px;
}
.navbar-header .navbar-brand {
margin-left: -20px;
}
.navbar-header .navbar-brand img {
display: none;
}
2017-04-24 17:13:08 -06:00
}