-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (62 loc) · 1.24 KB
/
styles.css
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
64
65
66
67
68
69
70
71
72
body {
background-image: url("background-image.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
color: #f5f6f7;
}
h1, p {
margin: 1em auto;
text-align: center;
font-family:Helvetica;
}
form {
width: 60vw;
max-width: 700px;
min-width: 300px;
margin: 0 auto;
font-family: sans-serif;
font-size: 18px;
}
fieldset {
border: none;
border-radius:15px 15px 0 0;
background-color: #f5f6f729;
padding: 50px;
}
#name,#email,#age,#dropdown,#select{
display: inline-block;
margin: 10px auto;
width: 100%;
height: 30px;
border-radius: 5px;
border:hidden;
}
input:placeholder-shown {
font-size: 0.8em;
}
hr{
visibility: hidden;
}
textarea{
width: 100%;
margin: 1em auto;
height: 10em;
font-size: 0.8em ;
border-radius: 5px;
border:hidden
}
input[type="submit"] {
display: block;
width: 100%;
margin: 1em auto;
border: none;
height: 3em;
font-size: 1.1rem;
background-color: white;
min-width: 300px;
border-radius: 5px;
}
input[type=submit]:hover {
background-color: #f1dcb9;
}