-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenquiries.css
executable file
·90 lines (73 loc) · 1.25 KB
/
enquiries.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
body {
font-size: 14px;
text-align: left;
}
h2 {
margin-left: 10%;
margin-bottom: 2%;
margin-top: 5%;
}
form {
margin-left: 20%;
}
input[type=text], input[type=email] {
width: 50%;
background-color: #f8f8f8;
border: 2px solid #ccc;
border-radius: 4px;
}
input[type=text]:focus {
outline: none;
border: 2px solid black;
}
input[type=email]:focus {
outline: none;
border: 2px solid black;
}
textarea {
width: 50%;
height: 150px;
border: 2px solid #ccc;
border-radius: 4px;
resize: none;
background-color: #f8f8f8;
}
textarea:focus {
outline: none;
border: 2px solid black;
}
input[type=submit] {
cursor: pointer;
margin-left: 45%;
background-color: #f8f8f8;
}
nav {
position: relative;
margin-left: 5%;
margin-bottom: 5%;
}
nav ul li {
display: inline-block;
padding-right: 10%;
margin-top: 5%;
}
a {
color: darkgray;
font-size: 2em;
font-family: 'Roboto', sans-serif;
padding-left: -10%;
}
a:hover {
color: purple;
text-decoration: none;
}
@media (max-width: 575.98px) {
nav {
margin-top: 10%;
}
}
@media (min-width: 576px) and (max-width: 767.98px) {
nav {
margin-top: 10%;
}
}