header.css
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
header {
min-height: 850px !important;
background-image: url("../background.php");
background-size: auto 800px;
background-position: center 50px;
background-repeat: no-repeat;
position: relative;
z-index: 0;
}
#realops-logo {
position: absolute;
background-image: url("../img/logo.png");
width: 800px;
height: 291px;
top: 450px;
left: 50px;
z-index: 2;
}
#realops-calltoaction {
position: absolute;
z-index: 5;
top: 680px;
left: 75px;
}
@media (min-width: 1200px) {
header {
background-size: cover;
}
}
@media (max-width: 870px) {
header {
min-height: 562px !important;
background-size: auto 700px;
}
#realops-logo {
background-image: url("../img/logo-small.png");
width: 400px;
height: 145px;
top: 285px;
left: 20px;
}
#realops-calltoaction {
top: 400px;
left: 30px;
}
}
@media (max-width: 440px) {
#realops-logo {
background-image: url("../img/logo-tiny.png");
width: 250px;
height: 56px;
top: 330px;
}
#realops-calltoaction {
top: 400px;
left: 30px;
}
}
#realops-background-shade {
background-color: rgba(0, 0, 0, 0.3);
width: 100%;
height: 100%;
position: absolute;
top: 0px;
z-index: 1;
}
#realops-container {
top: -100px;
position: relative;
}
#realops-body {
margin-bottom: 0px;
}