123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- /*
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * Author: g0tsu
- * Email: g0tsu at dnmx.0rg
- */
- html {
- display: block;
- height:100%;
- width:100%;
- position: relative;
- }
- head {
- display: none
- }
- meta {
- display: none
- }
- title {
- display: none
- }
- link {
- display: none
- }
- .markdown-body {
- padding-left: 2em;
- padding-right: 2em;
- padding-top: 1em;
- padding-bottom: 2em;
- }
- style {
- display: none
- }
- script {
- display: none
- }
- body {
- background-color: #222;
- display:block;
- margin:0px;
- height:100%;
- width:100%;
- }
- p {
- display:block;
- margin-top:1em;
- margin-bottom:1em;
- }
- b, strong {
- display:inline;
- font-weight:bold;
- }
- i, em {
- display:inline;
- font-style:italic;
- }
- center {
- text-align: center;
- display: block;
- }
- a:link {
- text-decoration: underline;
- color: #00f;
- cursor: pointer;
- }
- h1, h2, h3, h4, h5, h6, div {
- display:block;
- }
- h1 {
- font-weight: bold;
- margin-top: 0.67em;
- margin-bottom: 0.67em;
- font-size: 2em;
- }
- h2 {
- font-weight:bold;
- margin-top:0.83em;
- margin-bottom:0.83em;
- font-size: 1.5em;
- }
- h3 {
- font-weight:bold;
- margin-top:1em;
- margin-bottom:1em;
- font-size:1.17em;
- }
- h4 {
- font-weight:bold;
- margin-top:1.33em;
- margin-bottom:1.33em
- }
- h5 {
- font-weight:bold;
- margin-top:1.67em;
- margin-bottom:1.67em;
- font-size:.83em;
- }
- h6 {
- font-weight:bold;
- margin-top:2.33em;
- margin-bottom:2.33em;
- font-size:.67em;
- }
- br {
- display:inline-block;
- }
- br[clear="all"] {
- clear:both;
- }
- br[clear="left"] {
- clear:left;
- }
- br[clear="right"] {
- clear:right;
- }
- span {
- display:inline
- }
- img {
- display: inline-block;
- }
- img[align="right"] {
- float: right;
- }
- img[align="left"] {
- float: left;
- }
- hr {
- display: block;
- margin-top: 0.5em;
- margin-bottom: 0.5em;
- margin-left: auto;
- margin-right: auto;
- border-style: inset;
- border-width: 1px
- }
- /***************** TABLES ********************/
- table {
- display: table;
- border-collapse: separate;
- border-spacing: 2px;
- border-top-color: gray;
- border-left-color: gray;
- border-bottom-color: black;
- border-right-color: black;
- }
- tbody, tfoot, thead {
- display: table-row-group;
- vertical-align: middle;
- }
- tr {
- display: table-row;
- vertical-align: inherit;
- border-color: inherit;
- }
- td, th {
- display: table-cell;
- vertical-align: inherit;
- border-width: 1px;
- padding: 1px;
- }
- th {
- font-weight: bold;
- }
- table[border] {
- border-style:solid;
- }
- table[border|=0] {
- border-style:none;
- }
- table[border] td, table[border] th {
- border-style: solid;
- border-top-color: black;
- border-left-color: black;
- border-bottom-color: gray;
- border-right-color: gray;
- }
- table[border|=0] td, table[border|=0] th {
- border-style:none;
- }
- caption {
- display: table-caption;
- }
- td[nowrap], th[nowrap] {
- white-space:nowrap;
- }
- tt, code, kbd, samp {
- font-family: monospace
- }
- pre, xmp, plaintext, listing {
- display: block;
- font-family: monospace;
- white-space: pre;
- margin: 1em 0
- }
- /***************** LISTS ********************/
- ul, menu, dir {
- display: block;
- list-style-type: disc;
- margin-top: 1em;
- margin-bottom: 1em;
- margin-left: 0;
- margin-right: 0;
- padding-left: 40px
- }
- ol {
- display: block;
- list-style-type: decimal;
- margin-top: 1em;
- margin-bottom: 1em;
- margin-left: 0;
- margin-right: 0;
- padding-left: 40px
- }
- li {
- display: list-item;
- }
- ul ul, ol ul {
- list-style-type: circle;
- }
- ol ol ul, ol ul ul, ul ol ul, ul ul ul {
- list-style-type: square;
- }
- dd {
- display: block;
- margin-left: 40px;
- }
- dl {
- display: block;
- margin-top: 1em;
- margin-bottom: 1em;
- margin-left: 0;
- margin-right: 0;
- }
- dt {
- display: block;
- }
- ol ul, ul ol, ul ul, ol ol {
- margin-top: 0;
- margin-bottom: 0
- }
- blockquote {
- display: block;
- margin-top: 1em;
- margin-bottom: 1em;
- margin-left: 40px;
- margin-left: 40px;
- }
- /*********** FORM ELEMENTS ************/
- form {
- display: block;
- margin-top: 0em;
- }
- option {
- display: none;
- }
- input, textarea, keygen, select, button, isindex {
- margin: 0em;
- color: initial;
- line-height: normal;
- text-transform: none;
- text-indent: 0;
- text-shadow: none;
- display: inline-block;
- }
- input[type="hidden"] {
- display: none;
- }
- article, aside, footer, header, hgroup, nav, section {
- display: block;
- }
|