blob: 720b736856150288b4b4e69e0e809da8f97b9db6 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
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], input[type=password] {
width: 100%;
font-family: 'Roboto Mono', monospace;
font-size: 0.8em;
padding: calc(0.8em - 1px);
border-radius: 3px;
border: 1px solid #565656;
outline: none;
margin: 1.7em 0;
}
textarea, input[type=text], input[type=password] {
opacity: 0.5;
transition: opacity 0.5s cubic-bezier(.25,.8,.25,1);
}
textarea:focus, input[type=text]:focus, input[type=password]:focus {
opacity: 1;
}
.passwordInput {
transform: translateY(-1.6em);
}
input[type=password] {
margin-top: 0 !important;
font-weight: 700;
}
textarea {
height: 50vh;
resize: vertical;
min-height: 2em;
}
a {
color: #111111;
}
input[type=submit] {
font-family: 'Lora', serif;
font-weight: 700;
color: #faf9f5;
background-color: #111111;
padding: 0.8em 2em;
outline: 0;
}
|