mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-12 18:00:51 +01:00
158 lines
2.2 KiB
CSS
158 lines
2.2 KiB
CSS
.nav h1 {
|
|
margin: 0.4rem;
|
|
font-size: 2.1rem;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
float: left;
|
|
}
|
|
|
|
/* Apprise Version */
|
|
.nav i {
|
|
float: right;
|
|
font-style: normal;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
code {
|
|
background-color: #eee;
|
|
font-family: monospace;
|
|
white-space: normal;
|
|
padding: 0.2rem;
|
|
}
|
|
|
|
table code {
|
|
background-color: inherit;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
td, th {
|
|
vertical-align: top;
|
|
padding-top: 0;
|
|
}
|
|
.api-details ol {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
em {
|
|
color: #004d40;
|
|
font-weight:bold;
|
|
}
|
|
|
|
.no-config .info {
|
|
color: #004d40;
|
|
font-size: 3.3rem;
|
|
|
|
}
|
|
|
|
textarea {
|
|
height: 16rem;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.collapsible-body {
|
|
padding: 1rem 2rem;
|
|
}
|
|
|
|
#overview strong {
|
|
color: #004d40;
|
|
display: inline-block;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.tabs .tab a{
|
|
border-radius: 25px 25px 0 0;
|
|
color:#2bbbad;
|
|
}
|
|
.collection a.collection-item:not(.active):hover,
|
|
.tabs .tab a:focus, .tabs .tab a:focus.active {
|
|
background-color: #eee;
|
|
}
|
|
.tabs .tab a:hover,.tabs .tab a.active {
|
|
background-color:transparent;
|
|
color:#004d40;
|
|
font-weight: bold;
|
|
background-color: #eee;
|
|
}
|
|
.tabs .tab.disabled a,.tabs .tab.disabled a:hover {
|
|
color:rgba(102,147,153,0.7);
|
|
}
|
|
.tabs .indicator {
|
|
background-color:#004d40;
|
|
}
|
|
.tabs .tab-locked a {
|
|
/* Handle locked out tabs */
|
|
color:rgba(212, 161, 157, 0.7);
|
|
}
|
|
.tabs .tab-locked a:hover,.tabs .tab-locked a.active {
|
|
/* Handle locked out tabs */
|
|
color: #6b0900;
|
|
}
|
|
|
|
.material-icons{
|
|
display: inline-flex;
|
|
vertical-align: middle;
|
|
}
|
|
#url-list code {
|
|
display: block;
|
|
background-color: inherit;
|
|
}
|
|
#url-list .chip {
|
|
background-color: inherit;
|
|
border: 1px solid #e4e4e4;
|
|
}
|
|
|
|
/* Notification Details */
|
|
ul.logs {
|
|
font-family: monospace, monospace;
|
|
height: 60%;
|
|
overflow: auto;
|
|
}
|
|
|
|
ul.logs li {
|
|
display: flex;
|
|
text-align: left;
|
|
width: 50em;
|
|
}
|
|
|
|
ul.logs li div.log_time {
|
|
font-weight: normal;
|
|
flex: 0 15em;
|
|
}
|
|
|
|
ul.logs li div.log_level {
|
|
font-weight: bold;
|
|
align: right;
|
|
flex: 0 5em;
|
|
}
|
|
|
|
ul.logs li div.log_msg {
|
|
flex: 1;
|
|
}
|
|
|
|
ul.logs li.log_INFO {
|
|
color: black;
|
|
}
|
|
|
|
ul.logs li.log_DEBUG {
|
|
color: #606060;
|
|
}
|
|
|
|
ul.logs li.log_WARNING {
|
|
color: orange;
|
|
}
|
|
|
|
ul.logs li.log_ERROR {
|
|
color: #8B0000;
|
|
}
|
|
|
|
.url-enabled {
|
|
color:#004d40;
|
|
}
|
|
.url-disabled {
|
|
color: #8B0000;
|
|
}
|