global.css raw
1 html,
2 body {
3 position: relative;
4 width: 100%;
5 height: 100%;
6 }
7
8 body {
9 color: #333;
10 margin: 0;
11 padding: 8px;
12 box-sizing: border-box;
13 font-family:
14 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
15 Cantarell, "Helvetica Neue", sans-serif;
16 }
17
18 a {
19 color: rgb(0, 100, 200);
20 text-decoration: none;
21 }
22
23 a:hover {
24 text-decoration: underline;
25 }
26
27 a:visited {
28 color: rgb(0, 80, 160);
29 }
30
31 label {
32 display: block;
33 }
34
35 input,
36 button,
37 select,
38 textarea {
39 font-family: inherit;
40 font-size: inherit;
41 -webkit-padding: 0.4em 0;
42 padding: 0.4em;
43 margin: 0 0 0.5em 0;
44 box-sizing: border-box;
45 border: 1px solid #ccc;
46 border-radius: 2px;
47 }
48
49 input:disabled {
50 color: #ccc;
51 }
52
53 button {
54 color: #333;
55 background-color: #f4f4f4;
56 outline: none;
57 }
58
59 button:disabled {
60 color: #999;
61 }
62
63 button:not(:disabled):active {
64 background-color: #ddd;
65 }
66
67 button:focus {
68 border-color: #666;
69 }
70