-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmediaqueries.css
65 lines (61 loc) · 1.17 KB
/
mediaqueries.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
@media screen and (max-width: 600px) {
#hero{
padding: 0;
flex-direction: column;
/* background-color: red; */
}
#hero-left{
order:2 ;
}
#hero-right{
order: 1;
}
/* hero top */
#hero-right{
width: 100%;
justify-content: center;
}
.profile-pic{
min-height: 250px;
min-width: 250px;
margin-top: 25px;
}
#day-night{
position: absolute;
width: 30px;
height: 20px;
top: 30px;
right: 30px;
}
/* hero bottom */
#hero-left{
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#hero-card{
/* background-color: red; */
width: 100%;
padding-top: 10px;
}
#hero-card h1{
font-size: 40px;
letter-spacing: 0;
line-height: 1em;
}
#hero-card h2{
margin: 0px;
font-size: 20px;
}
.hero-icon{
padding: 20px;
justify-content: space-evenly;
}
.hero-bio{
padding: 10px 50px;
}
#hero-left .btn{
margin-top: 0px ;
}
}