123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /* This CSS is released under Creative Commons Zero license, version 1.0
- which can be found here:
- https://creativecommons.org/share-your-work/public-domain/cc0/ */
- * {
- overflow: visible;
- }
- html {
- background-color: #eee;
- background-image:url("diagram.svg");
- }
- body {
- background-color: #fff;
- margin: 0 auto;
- max-width: 60em;
- padding: 0.2em 1em;
- box-shadow: 0 0 6px;
- }
- body {
- line-height: 1.6;
- font-family: Cantarell, sans-serif;
- font-size: 1em;
- color: #222;
- }
- div.warning{background:#fcc;font-size:1.1em;border:solid 1px #666;padding-left:1em;padding-right:1em;}
- input,select,option {
- width:92%;
- text-align:center;
- font-size:0.9em;
- }
- pre {
- padding: 0.3em;
- }
- table {
- border-collapse: collapse;
- width:100%;
- text-align:center;
- margin-bottom:1em;
- max-width:100%;
- }
- th{
- background:#cdcdcd;
- }
- th, td {
- border: solid 1px #888;
- }
- tr:nth-child(even) {
- background-color: #eee;
- }
- tr:nth-child(odd) {
- background-color: #fff;
- }
- code, pre {
- background-color: #DDD;
- }
- img {
- max-width: 100%;
- }
- #logo {
- height: auto;
- float: right;
- }
- .logoleft {
- float: left !important;
- }
- a {
- text-decoration: none;
- color: #22D;
- }
- /* probably generated with autolink_bare_uris extension */
- a.uri {
- word-wrap: break-word;
- }
- a:hover {
- color: #008;
- }
- .date {
- display: block;
- }
- .h a {
- display: none;
- }
- .redbutton {
- font-size:2em;
- font-weight:bold;
- background:#900;
- color:#fff;
- padding:0.5em;
- width:50%;
- margin-left:25%;
- }
|