-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffers.css
110 lines (95 loc) · 1.83 KB
/
offers.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
*{
padding: 0;
margin: 0;
}
body, html {
height: 100%;
scroll-behavior: smooth;
}
body{
background-image: url(Assets/Home_background.jpg);
height: 100%;
background-size: cover;
background-repeat: no-repeat;
color: white;
}
.nav li a{
color: white;
}
#logo{
max-height: 50px;
max-width: 100%;
}
#mainContainer{
margin-top: 120px;
}
::-moz-scrollbar {
display: none;
}
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);
border-radius: 10px;
background-color: #CCCCCC;
}
::-webkit-scrollbar
{ display: none; /* delete this line for it to work */
width: 12px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-color: #D62929;
background-image: -webkit-linear-gradient(90deg,
transparent,
rgba(0, 0, 0, 0.4) 50%,
transparent,
transparent)
}
.image {
position: relative;
width: 100%; /* for IE 6 */
}
.image-text {
position: absolute;
top: 45%;
left: 0;
width: 100%;
}
#header {
float: left;
margin-top: 40vh!important;
}
#offers{
margin-top: -70px;
height: 99vh!important;
z-index: 1;
}
nav {
z-index: 2;
}
@media only screen and (min-width: 768px) {
/* desktop */
}
@media only screen and (max-width: 768px) {
#header {
margin-top: 50px!important;
}
.pl-5 {
padding: 0 0 0px 10px !important;
}
.text {
margin-top: -50px !important;
}
#offers{
margin-top: 100px!important;
height: 58vh!important;
z-index: 0;
}
nav {
z-index: 2;
}
body {
}
}