View sourcecode

The following files exists in this folder. Click to view.

style.css

32 lines ASCII Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
body{
  background:#f5f5f5;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container{
  padding-top: 24px;
  padding-bottom: 24px;
}

.column{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

h1{
  margin-top: 0;
}

.table{
  margin-top: 12px;
}

.text-error{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 0, 0, 0.08);
}