123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- body {
- background-color: #14204f;
- margin: 0 auto;
- max-width: 760px;
- }
- html, body {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- *, *:before, *:after {
- -webkit-box-sizing: inherit;
- -moz-box-sizing: inherit;
- box-sizing: inherit;
- }
- body, input, button, textarea {
- font-family: Georgia, Helvetica;
- font-size: 17px;
- color: #ecf0f1;
- }
- textarea {
- border: none;
- padding: 10px;
- width: 100%;
- background-color: #14204f;
- min-height: 400px;
- }
- h1 {
- margin-top: 20px;
- text-align: center;
- }
- h3 {
- background-color: rgba(255, 255, 255, 0.2);
- padding: 20px;
- text-align: center;
- }
- a,
- a:hover {
- color: #ecf0f1;
- }
- pre code {
- color: #fff;
- font-size: 18px;
- }
- pre {
- overflow-x: auto;
- }
- label {
- display: block;
- margin-bottom: 15px;
- }
- sub {
- display: block;
- margin-top: -10px;
- margin-bottom: 15px;
- font-size: 11px;
- font-style: italic;
- }
- ul {
- margin: 0;
- padding: 0;
- }
- .parent {
- background-color: rgba(255, 255, 255, 0.2);
- margin: 50px 0;
- padding: 20px;
- }
- input {
- border: none;
- outline: none;
- background-color: #ecf0f1;
- padding: 10px;
- color: #14204f;
- border: 0;
- margin: 5px 0;
- display: block;
- width: 100%;
- }
- button {
- background-color: #ecf0f1;
- color: #14204f;
- border: 0;
- padding: 18px 12px;
- margin-left: 6px;
- cursor: pointer;
- outline: none;
- }
- button:hover {
- background-color: #e74c3c;
- color: #ecf0f1;
- }
- .nsg-tag {
- border-color: #14204f;
- }
- .inline {
- display: inline-block;
- }
- .gh-fork {
- position: fixed;
- top: 0;
- right: 0;
- border: 0;
- }
- .autofruit {
- width: 16px;
- margin-right: 3px;
- }
- #ddl {
- cursor: pointer;
- padding: 10px;
- background-color: rgba(0,0,0,0.1);
- }
|