-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
128 lines (109 loc) · 2.04 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
117
118
119
120
121
122
123
124
125
126
127
128
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #FAFAFA;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.insta-logo {
margin-bottom: 20px;
}
.container-imagens {
position: relative;
}
.img-celular {
width: 450px;
}
.imagem-celular {
height: 520px;
position: absolute;
left: 153px;
top: 26px;
transition: opacity 2s ease-in-out;
}
.container-itens {
width: 350px;
}
.container-form {
display: flex;
flex-direction: column;
border: 1px solid #dbdbdb;
background: #ffffff;
padding: 50px 40px 20px 40px;
/* padding-top: 50px;
padding-left: 40px;
padding-right: 40px;
padding-bottom: 20px;*/
}
input {
height: 36px;
outline: none;
border: 1px solid #dbdbdb;
border-radius: 3px;
padding-left: 5px;
margin-top: 5px;
color: #262626;
}
button {
background: #0095f6;
height: 30px;
border-radius: 3px;
border: none;
color: #ffffff;
margin-top: 20px;
cursor: pointer;
}
.login-facebook {
color: #385185;
font-weight: bold;
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
cursor: pointer;
font-size: 14px;
}
.esqueceu-senha {
color: #385185;
text-align: center;
cursor: pointer;
font-size: 12px;
}
.container-cadastro {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
border: 1px solid #dbdbdb;
padding-top: 20px;
padding-bottom: 20px;
}
.link-cadastro {
color: #0095f6;
font-weight: bold;
font-size: 14px;
margin-left: 5px;
cursor: pointer;
}
.paragrafo-conta {
font-size: 14px;
}
.paragrafo-app {
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
.container-app {
display: flex;
justify-content: center;
gap: 10px;
}
.logo-app {
width: 150px;
}