-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive-style.css
106 lines (82 loc) · 1.77 KB
/
responsive-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
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
/*Responsive Design*/
@media (max-width: 1199.5px) {
h1 {
font-size: 3.75rem;
}
h2 {
font-size: 2.1875rem;
}
h3 {
font-size: 1.875rem;
line-height: 2.6875rem;
}
h5 {
font-size: 1.0625rem;
}
/* blog */
.blog_wrapper .blog_details {
position: absolute;
top: 0.3125rem;
left: 0.3125rem;
right: 0.3125rem;
bottom: 0.3125rem;
}
}
@media (max-width:991px) {
/* 2 Navbar */
.header-scrolled {
height: auto;
}
.header_wrapper .navbar-collapse {
margin-top: -0.125rem;
}
.header_wrapper .menu-navbar-nav {
text-align: center;
background-color: var(--bg-white);
padding-bottom: 0.9375rem;
}
.header_wrapper .nav-item .nav-link {
margin-top: 0.9375rem;
}
}
@media (max-width: 767px) {
/* custom css */
section {
padding: 5rem 0;
}
h1 {
font-size: 2.5rem;
line-height: 3rem;
}
h2 {
font-size: 1.875rem;
line-height: 2.375rem;
}
h3 {
font-size: 1.5625rem;
line-height: 2.1875rem;
}
/* about */
.client-info>div {
justify-content: center;
}
.about_wrapper .client-info:before {
top: 0.25rem;
left: 2.8125rem;
}
}
@media (max-width: 575.5px) {
.blog_wrapper .blog_details {
position: absolute;
top: 2.1875rem;
left: 2.1875rem;
right: 2.1875rem;
bottom: 2.1875rem;
}
}
@media (max-width: 390px) {
/* top banner */
.banner_wrapper .banner-content h2::after {
left: 34%;
}
}