forked from themefisher/themelight-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
executable file
·123 lines (102 loc) · 2.16 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
/* =====================
desktop
min-width: 768px;
max-width: 1024px;
===================== */
@media (min-width: 768px) and (max-width: 1024px) {
#latest-work .block .recent-work-pic ul li .overlay {
top: 12px;
left: 25px;
bottom: 12px;
right: 25px;
}
#team .team-overlay {
padding: 10px;
}
}
/* =====================
Tablets
min-width: 640px;
max-width: 767px;
===================== */
@media (min-width: 640px) and (max-width: 767px) {
#team .col {
padding: 0 137px;
margin-bottom: 20px;
}
#pricing-table .col {
margin-bottom: 20px;
}
#contact-form .col {
margin-bottom: 20px;
}
#blog-left .blog-img .col-md-6 img{
margin-bottom: 20px;
}
}
/* =====================
Small Devices
min-width: 320px;
max-width: 479px;
===================== */
@media (min-width: 320px) and (max-width: 479px) {
#banner {
text-align: center;
}
#banner .block .buttons a:first-child {
margin-left: 7px;
margin-bottom: 10px;
}
#latest-work .block .recent-work-mixMenu ul li {
display: block;
}
#latest-work .block .recent-work-pic ul li .overlay {
top: 5px;
left: 20px;
bottom: 5px;
right: 20px;
}
#latest-work .block .recent-work-pic ul li .overlay h3 {
font-size: 14px;
}
#latest-work .block .recent-work-pic ul li .overlay i {
top: 34%;
font-size: 23px;
}
#testimonial .col {
padding: 20px;
text-align: center;
}
#testimonial .media .media-left {
display: block;
padding-right: 0;
}
#testimonial .media .media-left a {
height: 78px;
width: 78px;
margin: 0 auto;
}
#testimonial .media .media-body {
padding-right: 0;
}
#team .col {
margin-bottom: 20px;
}
#pricing-table .col {
margin-bottom: 20px;
}
#contact-form .col {
margin-bottom: 20px;
}
#blog-left .block .blog-comment .comment-img,
#blog-left .blog-comment-main .blog-comment .comment-img,
#blog-left .blog-comment-main .sub-blog-comment .comment-img{
float: none;
}
#blog-left .blog-comment-main .sub-blog-comment{
margin-left: 0;
}
#blog-left .blog-img .col-md-6 img{
margin-bottom: 20px;
}
}