dat.gui/demo/demo.css

212 lines
3.1 KiB
CSS
Raw Normal View History

* {
padding: 0px;
margin: 0px;
}
2011-01-25 07:43:32 +00:00
body {
font: 9.5px/13px Lucida Grande, sans-serif;
2011-01-26 23:25:40 +00:00
padding: 0 20px 20px 20px;
}
2011-01-28 21:19:26 +00:00
#container {
max-width: 530px;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Helvetica Neue", helvetica, arial, sans-serif;
color: #222;
}
2011-01-28 21:19:26 +00:00
hr {
border: 0;
height: 0;
border-top: 1px dotted #ccc;
}
h1 {
font-size: 80px;
font-weight: 800;
text-transform: lowercase;
line-height: 80px;
margin: 39px 0 20px 0;
}
2011-01-25 07:43:32 +00:00
h1 a:link, h1 a:visited, h1 a:hover, h1 a:active {
text-decoration: none;
margin-right: 7px;
}
h1 img {
width: 45px;
height: 45px;
2011-01-27 02:45:34 +00:00
margin-bottom: 8px;
2011-01-25 07:43:32 +00:00
}
2011-01-26 01:55:59 +00:00
h2 {
2011-01-27 02:45:34 +00:00
margin-top: 30px;
2011-01-26 23:36:23 +00:00
font-size: 18px;
2011-01-27 02:45:34 +00:00
margin-bottom: 24px;
}
h2.section {
margin: 0;
padding: 20px 0 20px;
cursor: pointer;
border-top: 1px dotted #ccc;
-webkit-transition: color 0.15s linear;
}
h2.section:hover {
color: #00aeff;
}
div.collapsed h2, div.expanded h2 {
float: left;
clear: both;
width: 100%;
cursor: pointer;
}
div.trans {
border-top: 1px dotted #ccc;
margin: 0px 0px 20px 0px;
}
ol#secrets {
padding: 0px 0px 20px 0px;
}
div.expanded h2:before {
content: '-';
}
div.collapsed h2:before {
content: '+';
}
div.expanded h2:before, div.collapsed h2:before {
font-weight: normal;
line-height: 2px;
float: left;
margin-top: 6px;
margin-right: 6px;
font-size: 9px;
font-family: Monaco, monospace;
}
div.collapsable {
overflow: hidden;
clear: both;
-moz-transition: height .2s ease-out;
-webkit-transition: height .2s ease-out;
transition: height .2s ease-out;
}
div.collapsable div {
height: auto;
}
div.collapsed .collapsable {
overflow: hidden;
clear: both;
height: 0;
}
div.expanded { cursor: pointer; }
2011-01-27 02:45:34 +00:00
#helvetica-demo {
position: absolute;
left: 0;
top: 0;
width: 800;
height: 300;
z-index: -1;
2011-01-26 01:55:59 +00:00
}
#notifier {
2011-01-27 21:24:25 +00:00
position: fixed;
right: 0;
top: 0;
width: 271px;
2011-01-27 21:24:25 +00:00
height: 142px;
2011-01-27 21:31:51 +00:00
background: url("assets/itgivesyouthis.jpg") center 0 no-repeat;
z-index: -2;
margin: 30px 22px 0 0;
}
2011-01-24 02:59:29 +00:00
pre {
margin: 20px 0 20px 0;
padding: 15px;
background-color: #222;
max-width: 500px;
font: 10px Monaco, monospace;
clear: both;
}
p, ul, ol {
2011-01-27 02:45:34 +00:00
font-size: 125%;
clear: both;
2011-01-27 02:45:34 +00:00
line-height: 18px;
margin-bottom: 24px;
}
li {
margin-left: 22px;
2011-01-27 02:45:34 +00:00
}
ul#desc {
list-style: circle;
font-size: 100%;
max-width: 380px;
}
a:link {
color: #00aeff;
}
2011-01-27 02:45:34 +00:00
a:visited {
color: #0fa954;
}
2011-01-27 02:45:34 +00:00
a:hover {
color: #e61d5f;
}
2011-01-27 02:45:34 +00:00
a:active {
color: #54396e;
}
2011-01-26 02:15:20 +00:00
footer {
margin-top: 20px;
2011-01-27 02:45:34 +00:00
background-color: #eee;
width: 510px;
padding: 10px;
clear: both;
color: #444;
2011-01-26 02:15:20 +00:00
}
2011-01-27 02:45:34 +00:00
pre a:link,
pre a:visited,
pre a:active,
2011-01-27 02:45:34 +00:00
pre a:hover {
color: #ccc;
2011-01-27 02:45:34 +00:00
}
code {
font: 10px Monaco, monospace;
2011-01-26 00:58:52 +00:00
}
2011-01-27 02:45:34 +00:00
code strong {
font-weight: normal;
color: #e61d5f;
2011-01-26 00:58:52 +00:00
}
/* SPAN elements with the classes below are added by prettyprint. */
2011-01-25 07:43:32 +00:00
.str { color: #0fa954; }
.kwd { color: #e61d5f; }
.com { color: #555; }
.typ { color: #ccc; }
2011-01-25 07:43:32 +00:00
.lit { color: #00aeff; }
.pun, .opn, .clo { color: #777; }
.pln { color: #ccc; }
2011-01-26 01:55:59 +00:00
.tag { color: #555; }
.atn { color: #555; }
.atv { color: #777; }
2011-01-25 07:43:32 +00:00
.dec { color: #606; }