-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
66 lines (63 loc) · 1.19 KB
/
Copy pathresponsive.css
File metadata and controls
66 lines (63 loc) · 1.19 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
@media(max-width: 1350px) {
div.hero-background-pos {
left: 80%;
width: 120px;
height: 120px;
}
}
@media (max-width: 1100px) {
div.hero-background-pos {
width: 100px;
height: 100px;
left: 78%;
}
}
@media (max-width: 850px) {
div.menu {
display: flex;
}
div.hero-background-pos {
display: none;
}
ul.sm-hide {
display: none;
}
div.hero-section {
padding: 2rem;
width: 100%;
min-height: calc(100vh - 100px);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
div.nav-bar {
padding: 1rem 2.5rem;
}
div.hero-background {
padding: 5rem;
}
div.background h4,
div.background p {
padding: 0.4rem;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
margin: 0.5rem 0;
}
div.footer-input {
flex-wrap: wrap;
}
div.footer-btn a {
width: 100%;
display: flex;
justify-content: center;
}
}
@media (max-width:450px) {
div.hero-background {
padding: 2rem;
}
}