-
Notifications
You must be signed in to change notification settings - Fork 10
/
carousel.css
112 lines (95 loc) · 2.01 KB
/
carousel.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
/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
color: #5a5a5a;
}
/* MARKETING CONTENT
-------------------------------------------------- */
/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
margin-bottom: 1.5rem;
text-align: center;
}
.marketing h1 {
font-weight: 600;
font-size: 36pt;
text-align: right;
padding-top: 0.5em;
}
.marketing h2 {
font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
margin-right: .75rem;
margin-left: .75rem;
}
/* rtl:end:ignore */
/* Navbar
------------------------- */
header, .navbar, .navbar-brand {
background-color: #404040;
color: #808080;
margin: 0 auto;
text-align: center;
}
/* Featurettes
------------------------- */
.featurette-divider {
margin: 2rem 0; /* Space out the Bootstrap <hr> more */
}
/* Thin out the marketing headings */
.featurette-heading {
margin-top: 1rem;
font-weight: 300;
line-height: 1;
/* rtl:remove */
letter-spacing: -.05rem;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
/* Bump up size of carousel content */
.navbar-brand, .marketing h1 {
font-size: 64pt !important;
}
.featurette-divider {
margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}
.carousel-caption p {
margin-bottom: 1.25rem;
font-size: 1.25rem;
line-height: 1.4;
}
.featurette-heading {
font-size: 50px;
}
}
@media (min-width: 62em) {
.navbar-brand, .marketing h1 {
font-size: 72pt !important;
}
.featurette-divider {
margin: 6rem 0; /* Space out the Bootstrap <hr> more */
}
.featurette-heading {
margin-top: 7rem;
}
}
@media (prefers-color-scheme: dark) {
p, h1, h2 {
color: #808080 !important;
}
.text-muted {
color: #404040 !important;
}
}
@media (prefers-color-scheme: light) {
p, h1, h2 {
color: #404040 !important;
}
.text-muted {
color: #808080 !important;
}
}