sgregoratto.me

Hugo files for www.sgregoratto.me
git clone git://git.sgregoratto.me/sgregoratto.me
Log | Files | Refs

style.css (1548B)


      1 p {
      2 	-webkit-hyphens: auto;
      3 	-webkit-hyphenate-limit-before: 3;
      4 	-webkit-hyphenate-limit-after: 3;
      5 	-webkit-hyphenate-limit-chars: 6 3 3;
      6 	-webkit-hyphenate-limit-lines: 2;
      7 	-webkit-hyphenate-limit-last: always;   
      8 	-webkit-hyphenate-limit-zone: 8%;
      9 
     10 	-moz-hyphens: auto;
     11 	-moz-hyphenate-limit-chars: 6 3 3;
     12 	-moz-hyphenate-limit-lines: 2;  
     13 	-moz-hyphenate-limit-last: always;
     14 	-moz-hyphenate-limit-zone: 8%;
     15 
     16 	-ms-hyphens: auto;
     17 	-ms-hyphenate-limit-chars: 6 3 3;
     18 	-ms-hyphenate-limit-lines: 2;
     19 	-ms-hyphenate-limit-last: always;   
     20 	-ms-hyphenate-limit-zone: 8%;
     21 
     22 	hyphens: auto;
     23 	hyphenate-limit-chars: 6 3 3;
     24 	hyphenate-limit-lines: 2;
     25 	hyphenate-limit-last: always;   
     26 	hyphenate-limit-zone: 8%;
     27 }
     28 body {
     29 	margin: auto;
     30 	max-width: 38rem;
     31 	padding: 2rem;
     32 	width: auto;
     33 	font-family: sans-serif;
     34 	font-size: 1rem;
     35 	border: none;
     36 	vertical-align: baseline;
     37 }
     38 header {
     39 	font-weight: bold;
     40 }
     41 header .date {
     42 	color: #555;
     43 }
     44 .footnotes {
     45 	font-size: small;
     46 	text-decoration: none;
     47 }
     48 table {
     49 	width: 100%;
     50 	border-collapse: collapse;
     51 }
     52 figure {
     53 	font-style: italic;
     54 	text-align: center;
     55 }
     56 pre {
     57 	background-color: #f2f2f2;
     58 	border: 0.1rem solid #ccc;
     59 	border-radius: 0.5em;
     60 	overflow: auto;
     61 	word-wrap: normal;
     62 	font-family: monospace;
     63 	white-space: pre;
     64 	font-size: 9pt;
     65 	padding: 1em;
     66 }
     67 blockquote {
     68 	padding: 0 0 0rem 2rem;
     69 	margin: 0rem;
     70 	border-left: 0.3rem #aaa solid;
     71 	color: #666;
     72 }
     73 blockquote p {
     74 	font-style: italic;
     75 }
     76 sup{
     77 	padding: 0.1rem;
     78 }
     79 tr:nth-child(even) {
     80 	background-color: #f2f2f2;
     81 }
     82 @media print{
     83 	body{
     84 		max-width: none
     85 	}
     86 }