comparison website/src/site.css @ 1651:5b8f056527a3

docs work
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 31 Mar 2022 16:13:32 -0600
parents dd881eb03d87
children d5779a264a4a
comparison
equal deleted inserted replaced
1650:cc3b10a94612 1651:5b8f056527a3
1 * {
2 box-sizing: border-box;
3 }
1 4
2 body { 5 body {
3 font-family: sans-serif; 6 font-family: sans-serif;
4 margin-left: 5%; 7 margin: 0;
5 margin-right: 5%;
6 } 8 }
7 9
8 a[href] { 10 a[href] {
9 text-decoration: inherit; 11 text-decoration: inherit;
10 } 12 }
11 a[href]:hover { 13 a[href]:hover {
12 text-decoration: underline; 14 text-decoration: underline;
13 } 15 }
14 a[href]:visited { 16 a[href]:visited {
15 color: #0000BB; 17 color: #0000BB;
18 }
19
20 div[header] {
21 font-size: 14px;
22 background-color: #ddd;
23 padding: 8px 3%;
24 }
25
26 [content] {
27 margin-left: 3%;
28 margin-right: 3%;
16 } 29 }
17 30
18 [small] { 31 [small] {
19 font-size: small; 32 font-size: small;
20 } 33 }