This repository was archived by the owner on Jun 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.css
More file actions
91 lines (83 loc) · 1.32 KB
/
Copy pathcontact.css
File metadata and controls
91 lines (83 loc) · 1.32 KB
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
@media (min-width: 320px) {
form {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.form-head h1 {
width: 100%;
text-align: center;
margin-bottom: 5px;
}
.form-head hr {
margin: auto;
width: 100px;
border: 1px solid #909fee;
margin-bottom: 20px;
}
.form-group {
margin: 15px 0;
}
label {
display: block;
}
form input {
height: 20px;
}
form select {
height: 27px;
padding-right: 50px;
}
form textarea {
font-family: "Josefin Sans", sans-serif;
}
form button {
padding: 5px 10px;
border: none;
font-size: 15px;
color: white;
background: #6078ea;
border-radius: 3px;
}
footer {
margin-top: 50px;
}
}
@media (min-width: 768px) {
.form-head h1 {
font-size: 50px;
}
.form-head hr {
width: 130px;
}
label {
font-size: 25px;
}
form input {
height: 25px;
width: 250px;
}
form select {
height: 32px;
width: 256px;
}
form textarea {
width: 250px;
font-size: 18px;
height: 80px;
}
form button {
font-size: 20px;
padding: 10px 20px;
margin-top: 10px;
}
}
@media (min-width: 1024px) {
form button:hover {
cursor: pointer;
line-height: 1.1em;
border: solid 1px white;
opacity: 0.8;
}
}