-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (42 loc) · 709 Bytes
/
styles.css
File metadata and controls
47 lines (42 loc) · 709 Bytes
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
body{
width: 100%;
height: 100vh;
margin: 0;
background-color: #1b1b32;
color: #f5f6f7;
font-family: Sans-serif;
font-size: 18px;
}
label{
display: block;
margin: 0.4rem 0;
}
#title{
margin: 1rem auto;
text-align: center;
}
#description{
margin: 1rem auto;
text-align: center;
}
form{
margin: 0 auto;
max-width: 400px;
min-width: 200px;
width: 60vw;
}
input, textarea, select{
width: 100%;
margin: 10px 0 0 0;
}
.inline{
width: unset;
margin: 0 0.5 0 0;
vertical-align: middle;
}
input[type="submit"]{
display: block;
width: 60%;
margin: 0 auto;
height: 2em;
}