aboutsummaryrefslogtreecommitdiff
path: root/assets/style.css
blob: 7f524b9e18950647ef523c4edca09cc03477d870 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
html, body, div, h1, header,section, table, th, td, tr{
	margin: 0;
	padding: 0;
	border: 0;
}

body {
    font-family: sans-serif;
    margin: 0 auto;
    background-color: #f4f4f4;
}

header {
    background-color: #0062cc;
    padding: .5em;
    margin: 0 auto;
}

header h1 {
    font-size: large;
    text-transform: uppercase;
}

header > h1 > a {
    color: white;
    text-decoration: none;
}

main {
    margin: 1em;
}

table {
    display: block;
    border-spacing: 0;
    width: 100%;
    overflow:auto;
    margin-top: 1em;
}

th.fixed, td.fixed {
  width: 100px;
  overflow: hidden;
}

th {
    padding: 1em;
    text-align: left;
}

td {
    padding: 1em;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #ccc;
}

form {
    width: 70%;
    max-width: 500px;
}

form input {
    width: 100%
}

form label {
    display: block;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.field {
    margin-bottom: 1em;
}

a.button, button  {
  display: inline-block;
  padding: .1rem .75rem;
  background: #e9ecef;
  border: #343a40 1px solid;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  color: #000;
  border-radius: 0;
  text-decoration: none;
  transition: 0.5s all;
  align-self: flex-start;
}

a.button:hover {
    background-color: #fff;
}