-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslideshowCSS.css
More file actions
57 lines (48 loc) · 808 Bytes
/
Copy pathslideshowCSS.css
File metadata and controls
57 lines (48 loc) · 808 Bytes
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
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}
.header
{
}
h1
{
font-size: 120px;
text-align: center;
color: #f3d352;
}
body
{
text-align: center;
}
p1
{
font-size: 40px;
color: #f3d352;
}
/* Create four equal columns that sits next to each other */
.column {
flex: 24%;
max-width: 24%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
flex: 100%;
max-width: 100%;
}
}