-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.css
More file actions
62 lines (57 loc) · 1.28 KB
/
join.css
File metadata and controls
62 lines (57 loc) · 1.28 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
.joinHeroImg {
width: 100%;
background-image:
linear-gradient(
rgba(0, 0, 0, 0.3),
rgba(0, 0, 0, 0.3)),
url("images/roster/groupPhoto2.JPG");
height: 75vh;
background-size: cover;
background-repeat: no-repeat;
background-position: 0% 10%; /* which part of the image it shows, opposite of where it crops from*/
}
.googleForm {
box-shadow: 0 0 50px rgba(217, 32, 47, 0.3);
border-radius: 15px;
padding-top: 20px;
margin: 50px 20px 25px 20px;
overflow: hidden;
width: 700px;
max-width: 80%;
}
@media screen and (max-width: 750px) {
.googleForm {
max-width: 90%;
box-shadow: 0 0 25px rgba(217, 32, 47, 0.3);
transition: 0.3s ease-in-out;
}
}
/* Mobile responsive contact image */
@media screen and (max-width: 1200px) {
.joinHeroImg {
background-position: 60% 0%;
}
}
@media screen and (max-width: 950px) {
.joinHeroImg {
background-position: 60% top;
}
}
@media screen and (max-width: 600px) {
.joinHeroImg {
background-size: 125%;
background-position: 60% 0%;
}
}
@media screen and (max-width: 500px) {
.joinHeroImg {
background-size: 150%;
background-position: 60% bottom;
}
}
@media screen and (max-width: 400px) {
.joinHeroImg {
background-size: 165%;
background-position: 60% bottom;
}
}