-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
72 lines (61 loc) · 1.17 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&display=swap');
*{
box-sizing: border-box;
}
body {
background-color: #fad390;
font-family: 'Nunito', sans serif;
font-size: 14px;
text-align: center;
margin: 0;
}
h1 {
margin-bottom: 0px;
}
h1 + p {
margin-top: 0px;
}
form {
background-color: #f8c291;
box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
border-radius: 2px;
padding: 30px 50px;
max-width: 450px;
margin: 40px auto;
}
.form-control {
margin-bottom: 20px;
text-align: left;
}
.form-control label {
display: block;
margin-bottom: 6px;
}
.form-control input,
.form-control select,
.form-control textarea {
border: 1px solid#777;
border-radius: 2px;
font-size: 14px;
font-family: inherit;
padding: 10px;
display: block;
width: 100%;
}
.form-control input[type="radio"], .form-control input[type="checkbox"] {
display: inline-block;
width: auto;
}
button{
background-color: #fad390;
border: 1px solid #fad390;
border-radius: 20px;
box-shadow: 1px 1px 1px #f7e5e5;
font-family: inherit;
font-size: 16px;
height: 35px;
padding:8px;
width: 30%;
justify-content: center;
align-items: center;
}