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

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

form {
  width: 100%;
}

textarea {
  width: 100%;
  height: 60vh;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8em;
  padding: 0.8em;
  border-radius: 3px;
  border: 1px solid #565656;
  outline: none;
}

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

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