-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (101 loc) · 1.78 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
color: white;
}
#container {
background: url('./img/background.jpeg');
padding-bottom: 180px;
}
#botao-entrar {
background-color: #e50914;
font-size: 16px;
padding-top: 8px;
padding-bottom: 8px;
padding-left: 18px;
padding-right: 18px;
border: 0;
border-radius: 3px;
float: right;
cursor: pointer;
}
#cabecalho {
padding: 28px 56px;
}
h1 {
text-align: center;
font-size: 64px;
width: 700px;
margin-left: auto;
margin-right: auto;
margin-top: 140px;
}
#paragrafo-assista {
font-size: 24px;
text-align: center;
margin-top: 14px;
}
#paragrafo-pronto {
font-size: 20px;
text-align: center;
margin-top: 24px;
}
input {
width: 500px;
padding-left: 10px;
}
#botao-email {
background-color: #e50914;
font-size: 30px;
border: 0;
width: 250px;
cursor: pointer;
}
#formulario {
display: flex;
justify-content: center;
margin-top: 20px;
height: 70px;
}
#rodape {
background-color: black;
border-top: 8px solid #303030;
padding: 70px 0;
}
h2 {
text-align: center;
font-size: 50px;
}
#botao-pergunta {
width: 800px;
background-color: #303030;
height: 70px;
border: 0;
font-size: 24px;
margin-top: 50px;
text-align: left;
padding: 0 24px;
margin-left: auto;
margin-right: auto;
display: block;
cursor: pointer;
}
#imagem-pergunta {
float: right;
margin-top: 5px;
transform: rotate(45deg);
}
#pergunta {
width: 800px;
background-color: #303030;
margin-right: auto;
margin-left: auto;
margin-top: 1px;
padding: 24px;
display: none;
}
.paragrafo-pergunta {
font-size: 24px;
}