-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_form.css
88 lines (75 loc) · 1.73 KB
/
style_form.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
body {
background: linear-gradient(to bottom, #9efd80b2, #baf5ba96, #ffffff );
color: #000000;
font-family: 'Montserrat', sans-serif;
text-align: center;
}
@import url(https://fonts.googleapis.com/css?family=Montserrat);
.container {
display: flex;
/* border:1px solid red; */
height: 100%;
align-items: i;
}
svg {
display: block;
font: 7em 'Montserrat';
width: 960px;
height: 400px;
margin: 0 auto;
}
header {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
background-color: rgba(0, 0, 0, 0);
}
.button {
background-color: #c91313;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 1.2rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}
.button:hover {
background-color: #fff;
color: #2d2d2d;
}
input[type="text"], input[type="email"], textarea {
background-color: #ffffff;
border: none;
padding: 10px;
border-radius: 5px;
color: #000000;
font-size: 1.1rem;
font-family: 'Montserrat', sans-serif;
margin-bottom: 20px;
}
input[type="submit"] {
background-color: #06bd00;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 25px;
font-size: 1.2rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}
input[type="submit"]:hover {
background-color: #c3ffc3;
color: #237a0d;
}
label {
display: block;
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: bold;
}