blob: be2d3073091023aa9bd9a7d8027bba71422713da (
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
|
body {
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto,
arial, sans-serif;
overflow-x: hidden;
margin: 0;
padding: 0;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
div {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100vw;
}
label {
text-align: center;
width: 20%;
}
.spacer {
width: 60%;
}
button {
border: none;
border-radius: 0;
padding: 0.75rem;
width: 20%;
}
textarea {
background-color: inherit;
border: none;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
resize: none;
outline: none;
height: 100vh;
width: 100vw;
max-height: 100vw;
max-width: 90vw;
margin: 0 auto;
padding: 1.5rem;
}
:modal {
height: 90vh;
width: 90vw;
}
|