www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

look.css (1227B)


      1 /*
      2    General Theme
      3 */
      4 
      5 html {
      6 	background: #EEEEEE;
      7 }
      8 
      9 h1, h2, h3, h4, h5, h6, p, a, div {
     10 	font-family: serif;
     11 }
     12 
     13 h1 {
     14 	font-weight:normal;
     15 	margin-bottom:20px;
     16 	margin-top:5px;
     17 }
     18 h2 {
     19 	font-weight:normal;
     20 	margin-bottom:15px;
     21 	margin-top:10px;
     22 }
     23 h3, h4, h5, h6 {
     24 	font-weight:normal;
     25 	margin-bottom:15px;
     26 	margin-top:5px;
     27 }
     28 hr {
     29 	border:1px dotted #CCC;
     30 	margin-top:1px;
     31 }
     32 p {
     33 	margin:15px 0;
     34 	line-height: 1.3;
     35 }
     36 a {
     37 	text-decoration: none;
     38 	color:#003D4D;
     39 	-o-transition:color .2s ease-out;
     40 	-ms-transition:color .2s ease-out;
     41 	-moz-transition:color .2s ease-out;
     42 	-webkit-transition:color .2s ease-out;
     43 	transition:color .2s ease-out;
     44 }
     45 a:hover {
     46 	color:#839496;
     47 }
     48 a * {
     49 	-o-transition:color .2s ease-out;
     50 	-ms-transition:color .2s ease-out;
     51 	-moz-transition:color .2s ease-out;
     52 	-webkit-transition:color .2s ease-out;
     53 	transition:color .2s ease-out;
     54 
     55 }
     56 a *:hover {
     57 	color:#839496;
     58 }
     59 img {
     60 	display:block;
     61 	margin:5px auto;
     62 }
     63 code {
     64 	font-family:"Liberation Mono",monospace;
     65 	display:inline;
     66 	word-wrap:break-word;
     67 }
     68 pre code {
     69 	border:1px solid #000000;
     70 	border-radius:3px;
     71 	font-size:13px;
     72 	font-family:monospace;
     73 }
     74 pre {
     75 	white-space:pre-wrap;
     76 	word-break:break-all;
     77 }
     78 
     79 blockquote {
     80 	font-size:13px;
     81 	color:#cccccc;
     82 }