MySC/static/main.css

73 lines
936 B
CSS
Raw Permalink Normal View History

2024-09-21 17:23:21 +02:00
body {
2017-09-17 19:50:59 +02:00
margin-top: 4em;
}
2024-09-21 17:23:21 +02:00
div.panel-heading,
li.list-group-item,
a {
2017-09-17 19:50:59 +02:00
cursor: pointer;
}
.collapsing {
2017-09-17 23:38:05 +02:00
-webkit-transition: none;
transition: none;
display: none;
2017-09-17 19:50:59 +02:00
}
.count-tag {
display: inline-block;
width: 6em;
text-align: center;
}
2017-09-17 23:37:44 +02:00
.checkable:before {
2024-09-21 17:23:21 +02:00
content: "\2713";
2017-09-17 23:37:44 +02:00
margin-right: 0.2em;
font-style: italic;
color: #999;
visibility: hidden;
}
.checked {
font-style: italic;
color: #999;
}
.checked:before {
visibility: visible;
2017-09-17 19:50:59 +02:00
}
.center {
2017-09-17 23:38:05 +02:00
text-align: center;
2017-09-17 19:50:59 +02:00
}
.scase-name {
2017-09-17 23:38:05 +02:00
font-size: 1.5em;
2017-09-17 19:50:59 +02:00
}
2024-09-21 17:23:21 +02:00
.add_thing_label,
#edit_thing_label {
2017-09-17 23:38:05 +02:00
width: 80%;
display: inline-block;
2017-09-17 19:50:59 +02:00
}
2024-09-21 17:23:21 +02:00
.add_thing_nb,
#edit_thing_nb {
2017-09-17 23:38:05 +02:00
width: 18%;
display: inline-block;
2017-09-17 19:50:59 +02:00
}
/** Alertify **/
.alertify-notifier .ajs-message.ajs-info {
background: rgba(66, 215, 252, 0.95);
}
2024-09-21 17:23:21 +02:00
.alertify .ajs-header,
.alertify .ajs-footer {
background-color: #4e5d6c;
}
.alertify .ajs-dialog {
background-color: #485563;
}