-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (92 loc) · 1.96 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
@font-face{
font-family: netflix-sans-regular;
src: url("fonts/Netflixsans_W_Rg.woff2");
}
.body{
margin: 0px;
padding: 0px;
overflow-y: hidden;
}
.root{
background-image: radial-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.7)),url("images/backgroundd.webp");
background-size: cover;
background-repeat: no-repeat;
}
.navbar{
height: 10vh;
display: flex;
justify-content:space-between;
align-items: center;
}
.img-logo{
width:7%;
color: white;
}
.button-sign-in{
background-color: red;
color:white;
padding-top: 8px;
padding-bottom: 8px;
padding-left: 8px;
padding-right: 8px;
border-radius: 5px;
cursor: pointer;
display: inline-block;
width: fit-content;
}
.main-container{
width:100%;
height:90vh;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
padding-top: 10px;
}
.main-titles-container{
color: white;
text-align: center;
width: 50%;
padding-bottom: 30px;
}
.main-title{
font-size: 40px;
font-family:netflix-sans-regular;
}
.main-subtitle{
font-size:20px ;
font-family: Arial, Helvetica, sans-serif;
}
.main-call-to-action{
font-size:15px;
font-family: Arial,Helvetica, sans-serif;
}
.main-email-container{
width: 55%;
height: 18px;
background-color: #ffffff;
display: flex;
flex-direction: row;
justify-content:space-between ;
align-items: center;
}
.main-email-container{
outline: none;
border: none;
padding: 20px 10px;
font-size: 18px
}
.button-get-started{
cursor: pointer;
padding:18px 30px ;
font-family: Arial, Helvetica, sans-serif;
height: 24px;
background-color: red;
text-transform: uppercase;
color: white;
text-align: center;
width: 8em;
}
.button-get-started:hover{
background-color:rgb(231, 81, 81);
}