lorenzocesana.xyz

Source code of my website, built with HUGO
Log | Files | Refs

style.css (1520B)


      1 body {
      2 	font-family: monospace ;
      3 	background: #232b2b ;
      4 	color: #f0f0f0 ;
      5 	text-align: left ;
      6 	justify-content: center ;
      7 	font-size: 13pt ;
      8 	text-align: justify ;
      9 }
     10 
     11 main {
     12 	max-width: 900px ;
     13 	margin: auto ;
     14 }
     15 
     16 img {
     17 	max-width: 100% ;
     18 	display: block;
     19 	margin-left: auto;
     20 	margin-right: auto;
     21 }
     22 
     23 h1 {
     24 	font-family: sans-serif;
     25 	text-align: center ;
     26 	color: darkgoldenrod ;
     27 	font-size : 45pt ;
     28 }
     29 
     30 h2 {
     31 	font-family: sans-serif;
     32 	text-align: left ;
     33 	margin: auto ;
     34 	border-top: dashed #ddd 2px ;
     35 	font-size: 24pt ;
     36 	margin: 1em auto ;
     37 	color: limegreen ;
     38 	padding-top: 10px ;
     39 }
     40 
     41 h3 {
     42 	text-align: center ;
     43 	margin: auto ;
     44 	margin: 1em auto ;
     45 	color: white ;
     46 	padding-top: 25px ;
     47 }
     48 
     49 li {
     50 	text-align: left ;
     51 }
     52 
     53 a:link {
     54 	#color: #008000;
     55 	color: cyan ;
     56 }
     57 
     58 a:visited {
     59 	color: #ff471a;
     60 }
     61 
     62 a:hover {
     63 	color: #ffcccc;
     64 }
     65 
     66 a:active {
     67 	color: #008080;
     68 }
     69 
     70 code {
     71 	color: green ;
     72 	font-family: monospace ;
     73 	margin: auto ;
     74 	padding: 3px ;
     75 }
     76 
     77 blockquote {
     78 	font-size: 11pt ;
     79 	width: 800px ;
     80 	margin: 1.5em 10px ;
     81 	border: ridge black ;
     82 	border-width: 2px ;
     83 	padding: 0.5em 10px ;
     84 }
     85 
     86 footer {
     87 	text-align: center ;
     88 	clear: both ;
     89 }
     90 
     91 .left {
     92 	float: left ;
     93 }
     94 
     95 .inline {
     96 	display: inline-block ;
     97 	padding-right: 25px ;
     98 }
     99 
    100 /* For TAGLIST.HTML */
    101 .taglist {
    102 	text-align: center ;
    103 	clear: both ;
    104 }
    105 
    106 /* For NEXTPREV.HTML */
    107 #nextprev {
    108 	/* The container for both the previous and next articles. */
    109 }
    110 #prevart {
    111 	float: left ;
    112 	text-align: left ;
    113 }
    114 #nextart {
    115 	float: right ;
    116 	text-align: right ;
    117 }
    118 #nextart,#prevart {
    119 	max-width: 33% ;
    120 }