-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsive.css
125 lines (117 loc) · 2.07 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
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
@media (max-width:1300px){
.home .max-width{
margin-left:0px;
}
}
@media(max-width:1100px){
.about .about-content .left img{
height: 350px;
width: 350px;
}
}
@media (max-width:990px){
.max-width{
padding: 0 50px;
}
}
@media only screen and (max-width:824px){
.home{
background: url("bg2.jpeg") no-repeat center ;
background-size: cover;
height: 90vh;
}
.menu-btn{
display:block;
z-index: 999;
}
.menu-btn i.active::before{
content: "\f00d ";
}
.navbar .menu{
position: fixed;
height: 100vh;
width:100%;
left: -100%;
top:0;
background: black;
text-align: center;
padding-top:70px ;
transition: all 0.3s ease-in-out;
}
.navbar .menu li{
display: block;
}
.navbar .menu li a{
display: inline-block ;
margin: 20px 0;
font-size: 25px;
}
.navbar .menu.active{
left: 0;
}
.home .home-content .text-2{
font-size: 55px;
}
.home .home-content .text-3{
font-size: 25px;
}
.home .home-content a{
font-size: 20px;
padding: 10px 15px;
}
.max-width{
max-width: 800px;
}
.about .about-content .column{
width: 100%;
}
.about .about-content .left{
display: flex;
justify-content: center;
margin: 0 auto 60px;
}
.about .about-content .right {
flex:100%;
}
.services .title::after {
bottom: -13px;
background: black;
content: "What I provide?";
}
.services .serv-content .card,.skills .skills-content .column{
width: 100%;
margin-bottom: 20px;
}
.contact .contact-content .column{
flex: 100%;
}
}
@media (max-width:650px){
.max-width{
padding: 0 30px;
}
.home .home-content .text-2{
font-size: 50px;
}
.home .home-content .text-3{
font-size: 22px;
}
}
@media (max-width:460px){
.home{
height: 83vh;
}
.home .home-content .text-2{
font-size: 34px;
}
.home .home-content .text-3{
font-size: 20px;
}
.services .title::after {
width: 150px;
font-size: 20px;
}
.skills .title::after {
width: 125px;
}
}