uBlock/src/css/dashboard-common.css

87 lines
1.8 KiB
CSS
Raw Normal View History

2014-06-23 22:42:43 +00:00
body {
margin: 0;
padding: 0.25em 0.5em;
font: 14px Helvetica Neue, Helvetica, sans-serif;
2015-04-18 23:21:14 +00:00
color: #333;
2014-06-23 22:42:43 +00:00
}
h2, h3 {
margin: 1em 0;
font-family: inherit;
2014-06-23 22:42:43 +00:00
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
a {
text-decoration: none;
}
2014-10-07 12:59:35 +00:00
button {
padding: 7px;
font: inherit;
margin: 0;
background: #ddd;
color: #444;
border-radius: 5px;
border: 1px solid #aaa;
cursor: pointer;
-webkit-transition: 0.2s background, 0.2s border-color, 0.2s box-shadow;
transition: 0.2s background, 0.2s border-color, 0.2s box-shadow;
}
button:hover {
border-color: dodgerblue;
background: #fafafa;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
color: black;
2014-10-07 12:59:35 +00:00
}
2014-08-23 19:13:34 +00:00
div > p:first-child {
margin-top: 0;
}
div > p:last-child {
margin-bottom: 0;
}
2014-06-23 22:42:43 +00:00
.para {
width: 40em;
}
2015-04-11 07:26:33 +00:00
button.whatisthis {
2014-06-23 22:42:43 +00:00
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;
2015-04-11 07:26:33 +00:00
-webkit-transition: 0.2s background, 0.2s border-color, 0.2s box-shadow, 0.2s opacity;
transition: 0.2s background, 0.2s border-color, 0.2s box-shadow, 0.2s opacity;
2014-06-23 22:42:43 +00:00
}
2015-04-11 07:26:33 +00:00
button.whatisthis:hover {
2014-06-23 22:42:43 +00:00
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;
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;
}