tabbro/style.css

176 lines
3.9 KiB
CSS
Raw Normal View History

2015-02-08 20:42:59 -08:00
/* RESET */
2015-02-13 16:26:39 -08:00
@import url(http://fonts.googleapis.com/css?family=Open+Sans:700,400);
2015-02-08 20:42:59 -08:00
* {
2015-02-13 16:26:39 -08:00
box-sizing: border-box; }
2015-02-08 20:42:59 -08:00
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
2015-02-13 16:26:39 -08:00
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; }
2015-02-08 20:42:59 -08:00
body {
2015-02-13 16:26:39 -08:00
line-height: 1; }
2015-02-08 20:42:59 -08:00
ol, ul {
2015-02-13 16:26:39 -08:00
list-style: none; }
2015-02-08 20:42:59 -08:00
blockquote, q {
2015-02-13 16:26:39 -08:00
quotes: none; }
2015-02-08 20:42:59 -08:00
blockquote:before, blockquote:after,
q:before, q:after {
2015-02-13 16:26:39 -08:00
content: '';
content: none; }
2015-02-08 20:42:59 -08:00
table {
2015-02-13 16:26:39 -08:00
border-collapse: collapse;
border-spacing: 0; }
2015-02-13 18:05:12 -08:00
h1 {
font-size: 18px;
margin: 5px 0px 15px 0px; }
2015-02-08 20:42:59 -08:00
/* CLEARFIX */
.clearfix:after {
2015-02-13 16:26:39 -08:00
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0; }
2015-02-08 20:42:59 -08:00
2015-02-13 16:26:39 -08:00
.clearfix {
display: inline-block; }
2015-02-08 20:42:59 -08:00
2015-02-13 16:26:39 -08:00
* html .clearfix {
height: 1%; }
2015-02-08 20:42:59 -08:00
2015-02-13 16:26:39 -08:00
.clearfix {
display: block; }
2015-02-08 20:42:59 -08:00
2015-02-13 16:26:39 -08:00
/* FONTS */
/* STYLES */
2015-02-08 20:42:59 -08:00
/* GLOBAL */
body {
2015-02-13 16:26:39 -08:00
font-family: Open sans;
2015-02-13 18:05:12 -08:00
font-size: 12px; }
body.popup-page {
width: 420px;
height: auto;
padding: 5px 0px;
margin: 0;
max-height: 700px;
overflow-y: auto; }
body.options-page {
padding: 10px 20px; }
body.options-page .wrapper {
max-width: 600px;
margin: 0px auto; }
body.options-page input {
display: block; }
body.options-page input.toggle {
float: left; }
body.options-page input#dumpin, body.options-page input#dumpout {
display: block;
width: 100%; }
body.options-page strong {
font-weight: bold;
padding: 4px 0px 10px 5px;
display: block; }
body.options-page .answer span {
display: block;
margin-left: 20px; }
2015-02-13 16:26:39 -08:00
2015-02-08 23:46:05 -08:00
@-webkit-keyframes nopenopenope {
2015-02-13 16:26:39 -08:00
0% {
left: 0px; }
25% {
left: -10px; }
75% {
left: 10px; }
100% {
left: 0px; } }
2015-02-08 23:46:05 -08:00
.nope {
2015-02-13 16:26:39 -08:00
position: relative;
-webkit-animation: nopenopenope .15s linear 0s 3 normal; }
2015-02-08 20:42:59 -08:00
/* Options panel appears on hove */
.options {
2015-02-13 16:26:39 -08:00
position: absolute;
top: 3px;
right: 0px;
display: none;
padding: 0px;
font-size: 16px; }
.options a {
padding: 0px 3px;
color: #888; }
.options a.delete {
position: relative;
bottom: 1px; }
.options a:hover {
color: #000; }
2015-02-08 20:42:59 -08:00
2015-02-13 16:26:39 -08:00
li:hover > .options, li:hover > span > .options {
display: block; }
2015-02-08 20:42:59 -08:00
2015-02-08 23:30:51 -08:00
/* MAIN TREE */
2015-02-08 20:42:59 -08:00
ul#root li {
2015-02-13 16:26:39 -08:00
position: relative;
padding: 5px 0px; }
ul#root > li {
2015-02-13 16:26:39 -08:00
padding-bottom: 0px;
border-bottom: 1px solid #888; }
ul#root > li:last-child {
border-bottom: 0px; }
ul#root > li > span.name-line {
2015-02-13 16:26:39 -08:00
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 0px 0px 5px 10px;
2015-02-13 16:26:39 -08:00
font-weight: bold; }
ul#root > li:nth-child(2n) {
background-color: rgba(0, 0, 0, 0.05); }
ul#root > li:hover > span.name-line {
padding-right: 62px; }
2015-02-13 16:26:39 -08:00
ul#root > li.unloaded span.name-line {
font-style: italic;
color: #AAA; }
ul#root > li.unloaded:hover > span.name-line {
padding-right: 41px; }
2015-02-13 16:26:39 -08:00
ul#root > li > ul > li {
2015-02-13 15:05:25 -08:00
padding-left: 40px;
2015-02-09 22:04:05 -08:00
background-repeat: no-repeat;
background-size: 16px 16px;
2015-02-13 16:26:39 -08:00
background-position: 20px center; }
ul#root > li > ul > li:hover {
padding-right: 62px; }
2015-02-13 16:26:39 -08:00
ul#root > li > ul > li > span {
2015-02-13 17:07:16 -08:00
overflow: hidden;
2015-02-13 16:26:39 -08:00
text-overflow: ellipsis;
white-space: nowrap;
display: block;
padding-right: 3px; }
ul#root > li > ul > li.unloaded > span {
color: #AAA; }
2015-02-13 16:26:39 -08:00
ul#root > li > ul > li:nth-child(2n+1) {
background-color: rgba(0, 0, 0, 0.05); }
/*# sourceMappingURL=style.css.map */