comparison src/site.css @ 5:2f20b11affdd

add tools
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 21 Jun 2022 21:39:27 -0600
parents 7c64173643c8
children bff178656073
comparison
equal deleted inserted replaced
4:a17e400ddaa1 5:2f20b11affdd
1 * { 1 * {
2 box-sizing: border-box; 2 box-sizing: border-box;
3 }
4
5 body {
6 font-family: Sans-Serif;
7 margin: 0;
3 } 8 }
4 9
5 a { 10 a {
6 text-decoration: none; 11 text-decoration: none;
7 } 12 }
8 a:hover { 13 a:hover {
9 text-decoration: underline; 14 text-decoration: underline;
10 } 15 }
16
17 div[header], div[footer] {
18 font-size: 14px;
19 background-color: #ddd;
20 padding: 8px 3%;
21 display: flex;
22 justify-content: space-between;
23 }
24
25 [content] {
26 margin-left: 3%;
27 margin-right: 3%;
28 margin-bottom: 2em;
29 }