default.css
Raw
1@import "normalize.css";
2@import "sakura-vader.css";
3
4#jsguard {
5 display: none;
6}
7
8body {
9 display: flex;
10 align-items: center;
11 flex-direction: column;
12 min-height: 100vh;
13
14 padding: 3rem;
15 box-sizing: border-box;
16 max-width: 80rem;
17}
18
19a {
20 text-wrap: nowrap;
21}
22
23hr {
24 width: 100%;
25}
26
27h1 {
28 margin-bottom: 4rem;
29}
30
31form {
32 display: flex;
33 flex-direction: column;
34 gap: 0.5rem;
35 margin-bottom: 1.5rem;
36 min-width: 35rem;
37 width: 100%;
38
39 input {
40 flex-grow: 1;
41 }
42
43 input[type="checkbox"] {
44 flex-grow: 0;
45 margin-bottom: 0.5rem;
46 }
47
48 div {
49 display: flex;
50 flex-direction: row;
51 align-items: center;
52 gap: 1rem;
53 }
54}
55
56select {
57 overflow: auto;
58 flex-grow: 1;
59}
60
61img {
62 margin-bottom: 0;
63}
64
65.help-icon {
66 width: 2rem;
67 height: 2rem;
68 filter: invert();
69 margin-left: 0.5rem;
70}
71
72input[type="reset"] {
73 max-width: 25rem;
74 align-self: center;
75}
76
77dialog {
78 background-color: #120c0e;
79 color: #d9d8dc;
80 border-color: #eb99a1;
81
82 form {
83 display: flex;
84 flex-direction: column;
85 align-items: center;
86 }
87}
88