-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
51 lines (42 loc) · 912 Bytes
/
styles.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
#content h4 {
margin-top: 30px;
}
#SiteNavBar.navbar {
margin-bottom: 0;
}
#GridSystem .row {
border: 1px solid orange;
}
#GridSystem .row > div {
border: 1px solid grey;
}
/*##### MEDIA QUERIES ###### */
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
.media-example:after {
font-size: 28px;
display: block;
content: 'XS';
background: lightblue;
}
/* Small devices */
@media (min-width: 768px) {
.media-example:after {
content: 'SM';
background: lightcoral;
}
}
/* Medium devices */
@media (min-width: 992px) {
.media-example:after {
content: 'MD';
background: lightgoldenrodyellow;
}
}
/* Large devices */
@media (min-width: 1200px) {
.media-example:after {
content: 'LG';
background: lightseagreen;
}
}