72 lines
936 B
CSS
72 lines
936 B
CSS
body {
|
|
margin-top: 4em;
|
|
}
|
|
|
|
div.panel-heading,
|
|
li.list-group-item,
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.collapsing {
|
|
-webkit-transition: none;
|
|
transition: none;
|
|
display: none;
|
|
}
|
|
|
|
.count-tag {
|
|
display: inline-block;
|
|
width: 6em;
|
|
text-align: center;
|
|
}
|
|
|
|
.checkable:before {
|
|
content: "\2713";
|
|
margin-right: 0.2em;
|
|
font-style: italic;
|
|
color: #999;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.checked {
|
|
font-style: italic;
|
|
color: #999;
|
|
}
|
|
|
|
.checked:before {
|
|
visibility: visible;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.scase-name {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.add_thing_label,
|
|
#edit_thing_label {
|
|
width: 80%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.add_thing_nb,
|
|
#edit_thing_nb {
|
|
width: 18%;
|
|
display: inline-block;
|
|
}
|
|
|
|
/** Alertify **/
|
|
.alertify-notifier .ajs-message.ajs-info {
|
|
background: rgba(66, 215, 252, 0.95);
|
|
}
|
|
|
|
.alertify .ajs-header,
|
|
.alertify .ajs-footer {
|
|
background-color: #4e5d6c;
|
|
}
|
|
|
|
.alertify .ajs-dialog {
|
|
background-color: #485563;
|
|
}
|