comparison src/tools/tools.css @ 0:8f4df159f06b

start public repo
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 11 Jul 2025 20:57:49 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8f4df159f06b
1 * {
2 box-sizing: border-box;
3 }
4
5 body {
6 font-family: Sans-Serif;
7 }
8
9 a {
10 text-decoration: none;
11 }
12 a:hover {
13 text-decoration: underline;
14 }
15
16 table {
17 border-collapse: collapse;
18 }
19 th, td {
20 border: 1px solid;
21 padding: 4px;
22 }
23
24 button,
25 [onclick],
26 [clickable],
27 input[type="radio"],
28 input[type="file"],
29 input[type="submit"] {
30 cursor: pointer;
31 }