forked from twbs/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
56 lines (49 loc) · 1.21 KB
/
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
.text-container {
margin-top: 1em;
padding-left: 0.25em;
background: #88FF99;
border-radius: 10px;
height: 5em;
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
#sm, #md, #lg, #xl, #xxl, #xxxl {
display: none;
}
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 768px) {
#xs, #md, #lg, #xl, #xxl, #xxxl {
display: none;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 992px) {
#xs, #sm, #lg, #xl, #xxl, #xxxl {
display: none;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1200px) {
#xs, #sm, #md, #xl, #xxl, #xxxl {
display: none;
}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1900px) {
#xs, #sm, #md, #lg, #xxl, #xxxl {
display: none;
}
}
/* Extra, extra large devices (fullscreen large desktops, 1900px and up) */
@media (min-width: 1900px)and (max-width: 3000px) {
#xs, #sm, #md, #lg, #xl, #xxxl {
display: none;
}
}
/* Extra, extra, extra large devices (4k desktops, 3000px and up) */
@media (min-width: 3000px) {
#xs, #sm, #md, #lg, #xl, #xxl {
display: none;
}
}