84 lines
1.4 KiB
CSS
84 lines
1.4 KiB
CSS
.navbar {
|
|
background-color: #E4C59E;
|
|
color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 10px 20px;
|
|
height: 100%;
|
|
/* Tinggi navbar */
|
|
}
|
|
|
|
.navbar img {
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-right: 5px;
|
|
/* Ubah margin dari 10px menjadi 5px */
|
|
}
|
|
|
|
.navbar .navbar-brand {
|
|
text-align: center;
|
|
margin: 0;
|
|
/* Hilangkan margin bawaan agar teks rata tengah */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.navbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.navbar img {
|
|
margin-bottom: 5px;
|
|
margin-right: 5px;
|
|
width: 50px;
|
|
height: 50px;
|
|
transform: scale(0.6);
|
|
}
|
|
|
|
.navbar .navbar-brand {
|
|
text-align: center;
|
|
margin: 0;
|
|
font-size: 14px;
|
|
/* Sesuaikan ukuran teks jika diperlukan */
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.iframe-container {
|
|
position: relative;
|
|
width: 75%;
|
|
margin: 0 auto;
|
|
padding-bottom: 40.25%;
|
|
overflow: hidden;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
.iframe-container iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 1rem;
|
|
line-height: 1.5;
|
|
color: #333;
|
|
font-family: Arial, sans-serif;
|
|
|
|
} |