-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
224 lines (199 loc) · 4.03 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
html{
box-sizing: border-box;
height: 100%;
min-height: 830px;
min-width: 1020px;
}
ul{
list-style: none;
display: inline-block;
}
li{
list-style: none;
display: inline-block;
}
/*
Set the Image Background
**/
.hero-your-verse{
min-height: 568px;
max-width: 100%;
background: url("https://web.archive.org/web/20140301004302im_/http://images.apple.com/v/home/as/images/your_verse_hero.jpg") no-repeat;
background-position: center bottom;
background-size: cover;
top: 0;
left: 0;
right: 0;
position: relative;
}
/* Nav Bar */
.nav-bar{
height: 36px;
width: 980px;
margin: auto;
background-image: linear-gradient( #9e9e9e ,#5e5e5e 55%,rgb(88, 87, 87) 0% 50%, #757575 );
top: 83px;
position: relative;
display: flex;
flex-flow: row nowrap;
justify-content: space-around;
border-radius: 5px;
box-shadow:1px 1px 2px rgba(0, 0, 0,.7);
align-items: center;
}
.nav-text{
text-align: center;
flex: 1;
border-left: 1px solid rgb(78, 77, 77) ;
padding: 8px 0;
background-image: linear-gradient(to left, #e8e8e82e 0% 1%, #0000 1% 99%, #e8e8e82e 99% 100%), radial-gradient(circle, #0000 92%, #98989826 100%);
}
#border-fix{
border-left: none;
}
.nav-font{
/* font-family: 'Work Sans', sans-serif; */
font-weight:300;
color: #fff;
text-decoration: none;
font: 12px "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
text-shadow:
-1px -1px 0 #666,
1px -1px 0 rgb(44, 44, 44),
-1px 1px 0 #666,
1px 1px 0 #666;
}
.apple{
height: 21px;
width: auto;
/* */
/* opacity: .5; */
/* TODO Change? */
}
/* Search logo positioning */
.fa-search{
position: absolute;
top: 12px;
right: 93px;
width: 15px;
height: 14px;
font-size: 12px;
color: #fff;
}
#nav-search{
width: 106px;
border-radius: 25px;
height: 19px;
background-color: #0000;
border-bottom: 3px solid #666;
margin: 0 11px
}
/* Styling to header font */
.header{
margin-top: 130px;
}
.font{
text-align: center;
color: #fff;
font-family: 'Work Sans', sans-serif;
font-weight:100;
text-emphasis: none;
font-size: 12px;
}
.title{
font-size: 3.7rem;
}
.sub-headline{
font-size: 2rem;
max-width: 900px;
display: block;
margin: 0 auto;
}
.film-link{
text-decoration: none;
color: #fff;
font-size: 1.5rem;
display: block;
margin: 30px auto;
font-weight: 200;
}
.film-link:hover{
text-decoration:underline ;
color: #fff;
}
.play-button{
display: inline-block;
height: auto;
height: 30px;
margin-left: 10px;
vertical-align: bottom;
}
/* Promo Images created with flex instead of absolute positioning */
.promo-imgs-container{
margin: 0;
padding: 0;
display: flex;
}
.imgs{
/* !Need to use "object-fit" or else image looks skewed */
object-fit: cover;
max-width: 100%;
height: 200px;
border: 1px solid #fff;
}
/* Footer Formatting */
#homefooter{
display: grid;
align-items: baseline;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-template-areas:
"left right";
}
.left{
grid-area: left;
}
.right{
grid-area: right;
padding: 0;
}
/* Copyright Section
* Margin subtracted to help keep it in line with paragraph above*
*/
.left-b{
display: flex;
align-items: baseline;
justify-content: center;
margin-left: -78px;
}
.copyright{
width: fit-content;
margin:0;
padding: 0 1px;
}
.text{
color: #6e6e6e;
font-size: .8334em;
line-height: 1.2;
}
.links{
color: #08c;
text-decoration: none;
line-height: 1.2;
}
.text, .links{
font: 10px "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}
.left-border{
border-left: 1px solid #ccc;
padding-left: .6em;
}
.us-logo{
vertical-align: bottom;
}
.hot-news{
padding-right: .6em;
}
.left, .left-b{
text-align: center;
}