aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/css/index.css
blob: 902a09632976caeb590489da5574b29e80513dc8 (plain) (blame)
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
body {
  margin: 0;
  padding: 0;
  background-color: #faf9f5;
  font-family: 'Lora', serif;
}

h1 {
  font-size: 50px;
  margin: 0 0;
}

form {
  width: 100%;
}

textarea, input[type=text] {
  width: 100%;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8em;
  padding: 0.8em;
  border-radius: 3px;
  border: 1px solid #565656;
  outline: none;
  margin: 1.2em 0;
}

textarea {
  height: 50vh;
}

a {
  color: #111111;
}

input[type=submit] {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #faf9f5;
  background-color: #111111;
  padding: 0.75em 2em;
}

input[type=submit]:focus {
  outline: 0;
}