-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsive.css
53 lines (53 loc) · 1.3 KB
/
responsive.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
@media only screen and (max-width: 600px){
body{
overflow-x: hidden;
}
.container{
width: 100vw;
overflow: hidden;
/* background: red; */
display: block;
}
.container .gif-container{
max-width: 100%;
max-height: 40%;
display: inline-block;
overflow: hidden;
}
.container .gif-container h1{
font-size: 20px;
margin: 40px 0 0 40px;
font-weight: 300;
}
.container .gif-container .contents{
margin-top: 30px;
}
.container .gif-container .social-icons{
margin-top: -40px;
}
.container .gif-container .social-icons a{
height: 30px;
width: 30px;
margin: 0 20px;
}
.container .profile-container{
/* background: blue; */
max-width: 1080px;
max-height: 60%;
display: inline-block;
}
.container .profile-container img{
/* background: yellow; */
width: 100%;
height: 100%;
z-index: 6;
object-fit: contain;
margin: 0 0 0 50px;
}
.container .profile-container .g-d{
font-size: 30px;
float: left;
margin-top: 650px; /* margin-top: 220px;*/
margin-left: 50px;
}
}