-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
248 lines (216 loc) · 4.71 KB
/
style.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* Default style for all the text in body */
body {
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}
/* Main container which contains my navbar and main images */
.container {
position: relative;
background-image: url('images/main_image.jpg');
background-repeat: no-repeat;
background-position: bottom;
margin: 0 auto;
height: 690px;
max-width: 1442px;
}
/* Navbar styles */
.nav-flex {
font-size: 16px;
border: 1px solid rgb(109, 109, 109);
background:
linear-gradient(
to bottom,
rgb(134, 134, 134) 5%,
rgb(128, 128, 128) 50%,
rgb(107, 107, 107) 51%,
rgb(99, 99, 99) 8%,
rgb(121, 121, 121) 94%
);
border-right: 1px solid rgba(75, 75, 75, 0.5);
color: rgba(255, 255, 255, 0.9);
text-shadow:
0 0 1px rgba(0, 0, 0, 0.753),
1px 1px 1px rgba(66, 66, 66, 0.651);
cursor: pointer;
text-align: center;
border-radius: 8px;
margin: 0 auto;
position: relative;
top: 110px;
display: flex;
max-width: 982px;
height: 35px;
}
/* Nav style for all items */
.nav-item {
flex: 1;
}
/* Nav style for items from 1 to 7 | Input is excluded */
.nav-style {
padding-top: 7px;
border-right: 1px solid #999;
}
/* Style for my first item | Apple Logo */
.nav-item-1 {
border-right: 1px solid #999;
}
/* Style for apple logo */
img.apple-logo {
width: 20px;
padding-top: -3px;
}
/* Hover effects for navbar */
.nav-style:hover,
.nav-item-1:hover {
background: rgba(0, 0, 0, 0.4);
}
/* Style for the input inside my navbar */
input {
border: 1px solid rgb(109, 109, 109);
background:
linear-gradient(
to bottom,
rgb(134, 134, 134) 5%,
rgb(128, 128, 128) 50%,
rgb(107, 107, 107) 51%,
rgb(99, 99, 99) 8%,
rgb(121, 121, 121) 94%
);
border-radius: 8px;
width: 105px;
padding-left: 20px;
background-size: 16px;
background-repeat: no-repeat;
background-image: url('images/search_icon.png');
}
/* Style for input border */
input:focus {
border-color: rgba(68, 64, 61, 0.8);
box-shadow: 0 1px 1px rgba(102, 99, 98, 0.075) inset, 0 0 8px rgba(44, 35, 29, 0.6);
outline: 0 none;
}
/* Style for my item number 8 | Div which contains input */
.nav-item-8 {
padding: 0 5px;
margin-top: 5px;
}
/* Style for my main image | Image representing h1 */
.main-text-header {
position: relative;
top: 216px;
max-width: 983px;
height: 93px;
margin: 0 auto;
background-image: url('images/img_page_header.png');
background-repeat: no-repeat;
}
/* Style for my secondary image | Image representing h2 */
.secondary-text {
position: relative;
top: 225px;
height: 73px;
max-width: 983px;
margin: 0 auto;
background-image: url('images/img_secondary_text.png');
}
/* Style for the image representing my h3 */
.your-verse {
background-image: url('images/img_your_verse.png');
position: relative;
margin: 0 auto;
top: 250px;
height: 31px;
max-width: 983px;
}
/* Hover effects for my Headers | Images */
.your-verse:hover,
.secondary-text,
.main-text-header {
cursor: pointer;
}
/* Container for my secundary options, bellow main container */
.flex-container {
margin: 0 auto;
display: flex;
height: 204px;
max-width: 1442px;
}
/* Style for my flex items */
.flex-item {
width: 100%;
height: auto;
flex: 1;
border-top: 2px solid white;
border-right: 3px solid white;
}
/* Hover effects */
.flex-item:hover {
cursor: pointer;
}
/* Flex items from left to right */
/* ************************************************* */
.item-1 {
background-image: url('images/img_1.jpg');
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: auto;
}
.item-2 {
background-image: url('images/img_2.jpg');
background-size: cover;
}
.item-3 {
background-image: url('images/img_3.jpg');
background-size: cover;
}
.item-4 {
background-image: url('images/img_4.jpg');
background-size: cover;
}
/* ************************************************* */
/* Main Footer */
footer {
color: #6e6e6e;
margin: 0 auto;
position: relative;
top: 23px;
max-width: 982px;
height: auto;
}
/* Style for all links */
a:link {
text-decoration: none;
color: #08c;
}
/* Hover effect for all links */
a:link:hover {
text-decoration: underline;
}
/* Top container inside footer */
.footer-top-container {
font-size: 11px;
max-width: 982px;
height: auto;
}
/* Left side text */
.footer-text-left {
margin-top: 23px;
margin-right: 30px;
}
/* right side text */
.footer-text-right {
font-size: 11px;
}
/* bottom text */
.footer-text-bottom {
margin-top: 10px;
}
/* bottom container inside footer */
.footer-bottom-container {
margin-top: 10px;
font-size: 11px;
}
/* Usa logo inside footer */
.usa-logo {
vertical-align: middle;
}