uBlock/src/css/dashboard-common.css

98 lines
1.7 KiB
CSS
Raw Normal View History

2014-06-23 22:42:43 +00:00
body {
2018-04-10 12:08:28 +00:00
background-color: #fff;
2018-03-28 20:15:50 +00:00
box-sizing: border-box;
2018-04-10 12:08:28 +00:00
color: #000;
2014-06-23 22:42:43 +00:00
margin: 0;
2018-03-28 20:15:50 +00:00
padding: 0;
}
body > div.body {
2015-03-20 14:36:38 +00:00
padding: 0 0.5em 0.5em 0.5em;
2014-06-23 22:42:43 +00:00
}
2017-01-24 13:23:52 +00:00
@media screen and (max-device-width: 960px) {
body {
zoom: 1.4;
}
}
2014-06-23 22:42:43 +00:00
h2, h3 {
margin: 1em 0;
font-family: sans-serif;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
a {
text-decoration: none;
}
2015-10-03 14:28:53 +00:00
a.info {
color: black;
opacity: 0.3;
2015-10-03 14:28:53 +00:00
}
a.info:hover {
opacity: 0.9
}
a.info.important {
color: orangered;
2015-10-03 14:28:53 +00:00
}
2014-10-07 12:59:35 +00:00
button {
padding: 0.33em;
}
input[type="number"] {
width: 5em;
}
input[type="checkbox"][disabled] + label {
opacity: 0.4;
}
2014-06-23 22:42:43 +00:00
.para {
width: 40em;
}
.synopsis {
font-size: small;
opacity: 0.8;
}
2014-06-23 22:42:43 +00:00
.whatisthis {
margin: 0 0 0 8px;
border: 0;
padding: 0 0 4px 0;
width: 16px;
height: 16px;
background: url('../img/help16.png') no-repeat;
2014-06-23 22:42:43 +00:00
cursor: pointer;
opacity: 0.5;
vertical-align: middle;
2014-06-23 22:42:43 +00:00
}
.whatisthis:hover {
opacity: 1.0;
}
.whatisthis-expandable {
margin: 0.5em 0 1em 1.25em;
padding: 0.5em;
display: none;
border: 1px dotted black;
background-color: #F8F8F8;
2014-07-25 20:12:20 +00:00
font-size: 13px;
2016-10-18 16:33:50 +00:00
white-space: pre-line;
2014-06-23 22:42:43 +00: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;
}
2018-04-10 12:08:28 +00:00
@media (max-height: 640px), (max-height: 800px) and (max-width: 480px) {
.vverbose {
display: none !important;
}
}