Spaces:
Running
Running
File size: 1,145 Bytes
372531f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
body {
font-family: 'Libre Baskerville', serif;
font-size: 12pt; /* standard size for academic papers */
line-height: 1.6; /* for readability */
color: #333; /* softer on the eyes than black */
background-color: #fff; /* white background */
margin: 0;
padding: 0;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Libre Baskerville', serif;
color: #000; /* darker than the body text */
margin-top: 1em; /* space above headers */
}
h1 {
font-size: 2em; /* make h1 twice the size of the body text */
}
h2 {
font-size: 1.5em;
}
/* Add some space between paragraphs */
p {
margin-bottom: 1em;
}
/* Style for blockquotes, often used in academic papers */
blockquote {
font-style: italic;
margin: 1em 0;
padding: 1em;
background-color: #f9f9f9; /* a light grey background */
}
/* You might want to style tables, figures, etc. too */
table {
border-collapse: collapse;
width: 100%;
}
table, th, td {
border: 1px solid #ddd;
text-align: left;
padding: 8px;
}
th {
background-color: #f2f2f2;
color: black;
} |