-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
210 lines (178 loc) · 3.28 KB
/
Copy pathstyles.css
File metadata and controls
210 lines (178 loc) · 3.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
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
* {
margin: 0;
font-family: Helvetica,sans-serif;
/* font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif; */
}
/* MOBILE VIEW */
/* HEADER SECTION */
header{
background-image: url(images/bg.png);
background-position: center;
background-size: cover;
text-align: center;
}
.main{
color: white;
padding: 60px 0px 0px 0px;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 35px;
}
.logo{
width: 90px;
}
.sign-in-btn {
background-color: #e50914;
color: white;
border: 0;
font-size: 15px;
padding: 4px 8px;
border-radius: 3px;
cursor: pointer;
}
.nav {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 28px 5%;
}
.header-details {
padding: 45px 5%;
text-align: center;
}
.email-input {
width: 90%;
height: 46px;
margin-bottom: 10px;
padding-left: 10px;
}
.lg-btn {
height: 40px;
padding: 10px;
}
/* CONTENT SECTION */
.content-section{
background-color: black;
border-top: 8px solid #222;
text-align: center;
padding: 80px 5%;
}
.title{
color: white;
font-size: 28px;
padding: 60px 0px 0px 0px;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
}
.subtitle{
color: white;
font-size: 18px;
font-weight: 530;
margin: 16px 0px;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
}
.content-image{
width: 80%;
}
/* Footer Section */
.footer-text{
color: #757575;
font-size: 15px;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
margin-bottom: 30px;
}
.ti{
font-size: 13px;
font-family: calibri;
}
.footer-link {
color: #757575;
font-size: 12px;
font-family: 'Open Sans', sans-serif;
/* font-weight: lighter; */
margin-bottom: 16px;
width: 50%;
}
footer {
background-color: black;
border-top: 8px solid #222;
padding: 80px 17% 10px;
}
.footer-options {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
/* TAB view */
@media only screen and (min-width: 500px) {
/* Header Section */
.sign-in-btn {
font-size: 17px;
padding: 7px 17px;
}
.header-details {
padding: 20px 45px 130px;
}
/* Content Section */
.title{
font-size: 35px;
}
.subtitle{
font-size: 32px;
}
}
/* Footer Section */
.footer-link {
width: 33%;
}
/*
--------------------------------- */
/* DESKTOP view */
@media only screen and (min-width: 750px) {
/* Header Section */
.header-details {
padding: 50px 20% 150px;
}
.main{
color: white;
padding: 60px 0px 0px 0px;
font-family: 'Open Sans', sans-serif;
font-family: 'Poppins', sans-serif;
font-size: 40px;
margin-right: 100px;
margin-left: 100px;
}
.email-form {
display: flex;
flex-direction: row;
justify-content: center;
}
.email-input {
width: 60%;
}
.lg-btn {
height: 52px;
font-size: 20px;
/* border-radius: 0; */
border: 1px solid black;
}
/* Content Section */
.content-section {
display: flex;
flex-direction: row;
text-align: left;
}
.content-image {
width: 50%;
}
.reverse {
flex-direction: row-reverse;
}
/* Footer Section */
.footer-link {
width: 25%;
}
}