1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-28 11:00:38 +12:00
uMatrix/src/css/dashboard-common.css

72 lines
1.2 KiB
CSS
Raw Normal View History

2014-10-18 08:01:09 +13:00
body {
2015-05-05 09:49:15 +12:00
background-color: #fff;
box-sizing: border-box;
2015-05-05 09:49:15 +12:00
color: #000;
2014-10-18 08:01:09 +13:00
margin: 0;
2018-04-09 01:10:11 +12:00
padding: 0;
2018-01-30 11:19:42 +13:00
font: 14px/1.4 sans-serif;
2014-10-24 12:40:48 +13:00
}
body > *:first-child {
margin-top: 0;
2014-10-18 08:01:09 +13:00
}
2018-04-09 01:10:11 +12:00
div.body {
padding: 0 0.5em 0.5em 0.5em;
2014-10-18 08:01:09 +13:00
}
2014-11-04 08:27:59 +13:00
html.ltr h2 + * {
margin: 0 0 0 1em;
}
html.rtl h2 + * {
margin: 0 1em 0 0;
}
2014-10-18 08:01:09 +13:00
a {
text-decoration: none;
}
2014-10-22 12:12:25 +13:00
button {
2014-10-24 12:40:48 +13:00
padding: 0.3em 0.5em;
2014-10-22 12:12:25 +13:00
}
input[disabled] + label {
color: gray;
}
2014-10-18 08:01:09 +13:00
.para {
width: 40em;
}
.whatisthis {
margin: 0 0 0 8px;
border: 0;
2015-05-05 09:49:15 +12:00
font-family: FontAwesome;
2014-10-18 08:01:09 +13:00
padding: 0 0 4px 0;
cursor: pointer;
2015-05-05 09:49:15 +12:00
opacity: 0.4;
}
.whatisthis:before {
content: '\f059';
2014-10-18 08:01:09 +13:00
}
.whatisthis:hover {
opacity: 1.0;
}
.whatisthis-expandable {
background-color: #F8F8F8;
border: 1px dotted #aaa;
display: none;
font-size: smaller;
2014-10-18 08:01:09 +13:00
margin: 0.5em 0 1em 1.25em;
padding: 0.5em;
white-space: pre-line;
2014-10-18 08:01:09 +13:00
}
.whatisthis-expandable > p {
margin-top: 1em;
margin-bottom: 0;
}
.whatisthis-expandable > p:first-child {
margin-top: 0;
}
.whatisthis-expandable.whatisthis-expanded {
display: block;
}
.warn {
margin: 0;
padding: 5px;
background-color: #FEDAE0;
}