just-a-blog

A bad blogging software that converts Markdown into PHP for some reason.
Log | Files | Refs | README | LICENSE

default.css (585B)


      1 	/* Just a Blog default CSS
      2 	 * 
      3 	 * It's only supposed to be marginally pretty. Sorry.
      4 	 */
      5 
      6 body {
      7 	padding-left: 10%;
      8 	padding-right: 10%;
      9 	color: #565e65;
     10 	background-color: #f3f4f5;
     11 }
     12 
     13 
     14 a, a.visited {
     15 	color: #95c7ae;
     16 }
     17 
     18 
     19 a.active {
     20 	color: #ae95c7;
     21 }
     22 
     23 
     24 h1 {
     25 	color: #1c2023;
     26 }
     27 
     28 
     29 h2 {
     30 	color: #1c2023;
     31 }
     32 
     33 
     34 h3 {
     35 	color: #1c2023;
     36 }
     37 
     38 
     39 ul.nav {
     40 	list-style-type: none;
     41 	padding-left: 0;
     42 }
     43 
     44 
     45 	.nav > li {
     46 		display: inline;
     47 	}
     48 
     49 
     50 ol {
     51 
     52 }
     53 
     54 
     55 li {
     56 
     57 }
     58 
     59 
     60 p {
     61 
     62 }
     63 
     64 
     65 pre {
     66 	border: 5px solid #c7ae95;
     67 	background-color: #c795ae;
     68 	margin-left: 5%;
     69 	margin-right: 5%;
     70 	padding: 5px;
     71 }
     72 
     73 
     74 div {
     75 
     76 }