-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
77 lines (67 loc) · 1.23 KB
/
estilo.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
font-family: sans-serif;
font-size: 14px;
}
body{
width: 100%;
min-height: 100vh;
background-color: rgb(243, 243, 243);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
.container{
display: flex;
align-items: center;
justify-content: start;
width: 70%;
height: 100vh;
}
.phone{
display: flex;
align-items: center;
justify-content: center;
width: 50%;
}
.phone img{
height: 50rem;
}
.continue{
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
width: 50%;
min-height: 34rem;
}
.continue__group{
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
background-color: white;
width: 100%;
padding: 1.3rem 0;
border: 1px solid lightgrey;
}
.continue__group:nth-child(1){
min-height: 19 rem;
}
.continue__instagram-logo{
height: 3rem;
}
.continue__profile-photo{
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
overflow: hidden;
}
.continue__profile-photo img{
height: 6rem;
}