-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
52 lines (47 loc) · 1.02 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 15px;
}
body {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
background-color:rgb(243,243,243);
}
.instagram-wrapper{
display: flex;
align-items: center;
justify-content: space-between;
}
.instagram-phone{
display:flex;
width: 50%;
justify-content: center;
align-items: center;
}
.instagram-phone img{
height: 40rem;
}
.instagram-continue{
display:flex;
align-items: center;
justify-content: space-around;
flex-direction:column;
width: 50%;
min-height: 35rem;
}
.group{
display:flex;
justify-content: space-between;
align-items: center;
flex-direction: column;
background-color:#ffff;
width: 90%;
padding:1.3rem 0 ;
border: 1px solid lightgray;
}