-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
134 lines (113 loc) · 2.36 KB
/
Copy pathstyles.css
File metadata and controls
134 lines (113 loc) · 2.36 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
@font-face {
font-family: 'Netflix Sans';
font-weight: 300;
font-display: optional;
src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Lt.woff2) format('woff2'), url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Lt.woff) format('woff')
}
@font-face {
font-family: 'Netflix Sans';
font-weight: 800;
font-display: optional;
src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Bd.woff2) format('woff2'), url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Bd.woff) format('woff')
}
body {
margin: 0;
padding: 0;
background-color: #000000;
font-weight: 300;
font-family: Netflix Sans, sans-serif;
font-size: 18px;
}
input,
textarea,
select {
outline: none;
}
span {
color: #cc0001;
font-size: 18px;
margin: 30px auto 5px;
}
#logonetflix {
width: 200px;
display: block;
margin: 50px auto 5px;
}
h1 {
text-transform: uppercase;
font-weight: 800;
font-family: Netflix Sans, sans-serif;
font-size: 48px;
color: #cc0001;
text-align: center;
}
#description {
color: #ffffff;
text-align: center;
}
form {
width: 70%;
margin: 60px auto;
border-top: 10px solid #cc0001;
background-color: #ffffff;
padding: 40px;
max-width: 750px;
border-radius: 5px;
}
.question {
margin: 25px 0 5px;
display: block;
}
#name-label {
margin: 0 0 5px;
}
fieldset {
border: none;
padding: 0;
}
.block-1 input {
width: 98%;
height: 20px;
}
select {
width: 100%;
height: 25px;
}
/* Hide the up and down arrows on age input */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
appearance: textfield;
-moz-appearance: textfield; /* Firefox */
}
.block-3 label,
.block-4 label {
display: block;
}
input[type=radio],
input[type=checkbox] {
accent-color: #cc0001;
}
textarea {
resize: none;
width: 100%;
}
#required-field {
font-size: 12px;
margin-top: -3px;
color: #323232;
}
#submit {
width: 150px;
display: block;
margin: 20px auto;
height: 40px;
border: none;
background-color: #cc0001;
color: #ffffff;
border-radius: 5px;
text-transform: uppercase;
}