-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (86 loc) · 1.85 KB
/
style.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
89
90
91
92
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: inter;
font-weight: normal;
background: rgb(245, 245, 245);
}
h1 {
text-align: center;
margin-top: 10px;
font-size: 35px;
}
p {
text-align: center;
margin: 15px auto 0px auto;
font-size: 16px;
width: 80%;
}
.contact-form {
margin: 35px auto 0px auto;
width: 80%;
}
.contact-form label {
font-size: 20px;
display: inline-block;
margin-bottom: 10px;
}
.contact-form input {
padding: 12px 20px;
outline: none;
border: none;
border-bottom: 2px solid #ccc;
background: rgb(255, 255, 255);
font-size: 18px;
border-radius: 3px;
margin-bottom: 20px;
width: 100%;
}
.contact-form input:focus {
border-bottom: 2px solid #1a883f;
}
.contact-form textarea {
padding: 12px 20px;
outline: none;
border: none;
border-bottom: 2px solid #ccc;
background: rgb(255, 255, 255);
font-size: 18px;
border-radius: 3px;
width: 100%;
font-family: inter;
font-weight: normal;
}
.contact-form textarea:focus {
border-bottom: 2px solid #1a883f;
}
.contact-form button {
font-size: 19px;
width: 100%;
margin-top: 25px;
border: none;
padding: 12px 20px;
background-color: #22b352;
color: #fff;
border-radius: 3px;
cursor: pointer;
transition: 0.2s ease-in-out;
border-bottom: 3px solid #1a883f;
}
.contact-form button:hover {
background-color: #1a883f;
border-bottom: 3px solid #22b352;
}
@media all and (min-width: 1000px) {
.contact-form {
width: 40%;
}
}
@media all and (min-width: 1080px) {
.contact-form {
width: 30%;
}
}