-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
137 lines (108 loc) · 1.91 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
body {
padding-top: 3rem;
padding-bottom: 3rem;
color: #5a5a5a;
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
margin-bottom: 4rem;
}
a {
color: inherit;
text-decoration: none;
}
/* 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 h2 {
font-weight: 400;
}
.marketing .col-lg-4 p {
margin-right: .75rem;
margin-left: .75rem;
}
/* Featurettes
------------------------- */
.featurette-divider {
margin: 3rem 0;
margin-top: 1.3rem;
/* Space out the Bootstrap <hr> more */
}
/* Thin out the marketing headings */
.featurette-heading {
font-weight: 300;
line-height: 1;
letter-spacing: -.05rem;
}
.pics {
display: flex;
margin-top: 40px;
}
img {
margin-bottom: 15px;
}
h1 {
text-align: center;
font-size: 38px;
}
h2 {
font-size: 26px;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (max-width: 991px) {
img {
width: 100px;
height: 100px;
}
h1 {
font-size: 33px;
}
h2 {
font-size: 20px;
}
}
@media (max-width: 600px) {
h1 {
font-size: 28px;
}
h2 {
font-size: 20px;
}
}
@media (max-width: 480px) {
img {
width: 80px;
height: 80px;
}
h1 {
font-size: 25px;
}
h2 {
font-size: 17px;
}
}
@media (max-width: 350px) {
.pics {
display: block;
}
img {
width: 100px;
height: 100px;
}
h1 {
font-size: 28px;
}
h2 {
font-size: 20px;
}
}