12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- @font-face {
- font-family: 'inconsolata';
- src: url('files/inconsolata.woff') format('woff');
- font-weight: normal;
- font-style: normal;
- }
- body {
- margin: 30px 20px;
- color: #555;
- font-family: 'inconsolata';
- font-size: 15px;
- line-height: 18px;
- overflow: auto;
- }
- a {
- color: #1184CE;
- }
- h1 {
- color: #333;
- font-size: 25px;
- font-weight: normal;
- margin-top: 10px;
- }
- h2 {
- color: #4B0;
- font-size: 18px;
- font-weight: normal;
- margin-top: 40px;
- }
- h3 {
- color: #000;
- font-size: 16px;
- font-weight: normal;
- margin-top: 30px;
- }
- div {
- /* padding-left: 30px; */
- margin-bottom: 20px;
- }
- div.desc {
- padding-left: 0px;
- }
- pre, code {
- margin-top: 20px;
- margin-bottom: 20px;
- }
- code {
- display: block;
- width: -webkit-calc( 100% - 40px );
- width: -moz-calc( 100% - 40px );
- width: calc( 100% - 40px );
- padding: 20px;
- white-space: pre-wrap;
- background-color: #f9f9f9;
- overflow: auto;
- }
- iframe {
- width: 100%;
- height: 420px;
- border:0;
- }
- strong {
- color: #000;
- font-weight: normal;
- }
- #button {
- position: fixed;
- top: 20px;
- right: 20px;
- padding: 8px;
- color: #fff;
- background-color: #555;
- opacity: 0.5;
- }
- #button:hover {
- cursor: pointer;
- opacity: 1;
- }
|