-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (84 loc) · 1.33 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
html {
font-size: 16px;
font-weight: 500;
}
section, footer {
padding: 20px 0;
}
iframe {
margin: 10px 0 20px;
}
.parallax-container {
padding-top: 10px;
height: 100%;
}
.locations {
background-image: url('/assets/img/tiga.jpg');
background-size: cover;
background-position: center center;
}
.right {
margin-right: 5px;
}
/* Instafeed */
#instafeed {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(1, 1fr);
grid-column-gap: 0.2rem;
grid-row-gap: 0.5rem;
max-width: 64rem;
margin: auto;
}
#instafeed a {
display: block;
}
#instafeed img {
display: block;
width: 100%;
}
/* Tampilan pada Mobile */
@media only screen and (max-width: 599px) {
.s12 {
text-align: center;
}
.slider h1 {
font-size: 50px;
margin-top: -10px;
}
.slider h3 {
font-size: 26px;
}
/* Instafeed */
#instafeed {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0.2rem;
grid-row-gap: 0.5rem;
max-width: 64rem;
margin: auto;
}
}
/* Tampilan Desktop */
@media only screen and (min-width: 600px) {
/* .satu {
padding-top: 0;
}
.dua {
padding-top: 50px;
}
.tiga {
padding-top: 100px;
} */
.empat {
padding-top: 150px;
}
.slider h1 {
margin-top: -20px !important;
}
.caption img {
padding-top: 5px;
max-width: 240px;
}
}