-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive.css
53 lines (33 loc) · 853 Bytes
/
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
/* XL Device :1200px. */
@media (min-width: 1200px) and (max-width: 1449px) {}
/* LG Device :992px. */
@media (min-width: 992px) and (max-width: 1200px) {}
/* MD Device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
#containerDark {
font-size: 13px !important;
}
.navbar-brand {
display: inline-block;
width: 45%;
}
}
/* SM Small Device :320px. */
@media only screen and (min-width: 320px) and (max-width: 767px) {
#containerDark {
font-size: 13px !important;
}
.col-10.col-md-4.p.mt-0.pt-0 {
width: 100%;
}
.navbar-brand {
display: inline-block;
width: 45%;
}
}
/* SM Small Device :550px. */
@media only screen and (min-width: 576px) and (max-width: 767px) {
.col-10.col-md-4.p.mt-0.pt-0 {
width: 60%;
}
}