-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
211 lines (200 loc) · 5.11 KB
/
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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* Navbar Atas */
.top-navbar {
top: 0;
left: 0;
width: 100%;
background-color: prymari;
color: white; /* Warna teks putih */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
padding: 10px 0;
z-index: -1; /* Menempatkan navbar atas di atas konten */
display: flex;
justify-content: center; /* Menyelaraskan teks di tengah secara horizontal */
align-items: center; /* Menyelaraskan teks di tengah secara vertikal */
}
.top-navbar .navbar-brand {
font-size: 20px;
font-weight: bold;
margin: 0; /* Menghilangkan margin default */
}
/* Bottom Navbar */
.bottom-navbar {
position: fixed;
bottom: 5px; /* Menambahkan jarak sedikit dari bawah */
left: 0;
width: calc(100% - 20px); /* Mengurangi sedikit lebar untuk menambahkan margin */
margin: 0 10px; /* Memberi jarak di kiri dan kanan */
background-color: dark; /* Warna hijau tosca */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Efek bayangan untuk sedikit terangkat */
border-radius: 50px; /* Tepi yang melengkung di semua sisi */
border-top-left-radius: 5;
border-top-right-radius: 5;
}
.bottom-navbar .nav-link {
text-align: center;
color: #fff; /* Warna ikon dan teks putih */
}
.bottom-navbar .nav-link i {
font-size: 15px;
transition: color 0.3s ease;
}
.bottom-navbar .nav-link:hover i {
color: #000; /* Warna ikon saat hover */
}
.bottom-navbar .nav-link:hover {
color: #000; /* Warna teks saat hover */
}
.bottom-navbar .nav-link.active {
color: #fff; /* Warna teks aktif */
}
.bottom-navbar .nav-link.active i {
color: #fff; /* Warna ikon aktif */
}
@media (max-width: 576px) {
.bottom-navbar .nav-item {
flex: 1;
text-align: center;
}
}
/* Background Section */
.background-section {
position: relative;
height: 100vh; /* Mengatur tinggi ke 100vh */
background: url('./img/Banner.jpg') no-repeat center center; /* Ganti dengan URL gambar latar belakang Anda */
background-size: cover; /* Menutup seluruh area */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #fff; /* Warna teks putih */
}
.background-section .content {
text-align: center;
}
.background-section .content img {
max-width: 100%;
height: auto;
margin-bottom: 20px; /* Jarak antara gambar dan deskripsi */
}
.background-section .content .description {
margin-bottom: 20px; /* Jarak antara deskripsi dan tombol */
}
.background-section .content .btn {
background-color: #20c997; /* Warna tombol sesuai dengan navbar */
border: none;
color: #fff;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
.background-section .content .btn:hover {
background-color: #17a589; /* Warna tombol saat hover */
}
.outline-text {
color: white;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
font-family: 'Times New Roman', Times, serif;
}
.buttonklik{
width: calc(100% - 20px); /* Mengurangi sedikit lebar untuk menambahkan margin */
margin: 0 10px; /* Memberi jarak di kiri dan kanan */
background-color: transparent; /* Warna hijau tosca */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Efek bayangan untuk sedikit terangkat */
border-radius: 50px; /* Tepi yang melengkung di semua sisi */
border-top-left-radius: 5;
border-top-right-radius: 5;
color: white;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
}
.outline-text2{
color: black;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
font-family: 'Times New Roman', Times, serif;
}
.cursive {
font-family: 'Brush Script MT', cursive;
}
.card {
border-radius: 15px; /* Border radius untuk background card */
}
.btn {
font-size: 0.5rem; /* Ukuran teks tombol lebih kecil */
}
@media (max-width: 767.98px) {
.col-6 {
flex: 0 0 50%;
max-width: 50%;
}
}
.card-img-top {
border-radius: 15px 15px 0 0; /* Border radius hanya pada sudut atas gambar */
object-fit: cover; /* Memastikan gambar tidak melampaui batas */
}
.title {
text-align: center;
font-size: 2em;
margin-bottom: 30px;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.feature {
width: 100px;
height: 100px;
margin: 10px;
background-color: #fff;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.feature i {
font-size: 1em;
color: #D85275;
margin-bottom: 8px;
}
.feature span {
font-size: 0.6em;
text-align: center;
color: black;
}
.dove {
text-align: center;
margin-top: 30px;
margin-bottom: 20px;
}
.dove i {
font-size: 4em;
color: white;
}
.footer {
text-align: center;
font-size: 1.2em;
}
.bg-merah {
background-color: #D85275;
color: white;
font-family: 'Poppins', sans-serif;
}
.icon-circle {
display: inline-block;
width: 30px;
height: 30px;
border-radius: 50%;
background-color: red; /* Ganti warna sesuai kebutuhan */
text-align: center;
line-height: 30px;
margin-right: 1px;
}
.icon-text {
font-size: 20px;
font-weight: bold;
color: whitesmoke; /* Ganti warna sesuai kebutuhan */
font-family: 'Font Awesome 5 Free', sans-serif;
}