.post-body table td {border: none; padding: 15px; text-align: center; }
.post-body table th {border: none; padding: 15px; text-align: center; }
.post-body table {border: none;}
.post-body table thead th {color: white; text-align:center;}
/* Reset dan Variabel */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
–adl-primary: #2c3e50;
–adl-secondary: #3498db;
–adl-accent: #e74c3c;
–adl-light: #ecf0f1;
–adl-dark: #34495e;
–adl-success: #27ae60;
–adl-warning: #f39c12;
–adl-font-main: ‘Roboto’, sans-serif;
–adl-font-heading: ‘Poppins’, sans-serif;
–adl-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
–adl-radius: 8px;
–adl-transition: all 0.3s ease;
}
/* Layout Utama */
body {
font-family: var(–adl-font-main);
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
padding: 20px;
}
.adl-container {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: var(–adl-radius);
box-shadow: var(–adl-shadow);
overflow: hidden;
}
/* Header */
.adl-header {
background: linear-gradient(135deg, var(–adl-primary), var(–adl-secondary));
color: white;
padding: 40px 30px;
text-align: center;
}
.adl-title {
font-family: var(–adl-font-heading);
font-size: 2.5rem;
margin-bottom: 15px;
font-weight: 700;
}
.adl-subtitle {
font-size: 1.2rem;
opacity: 0.9;
max-width: 800px;
margin: 0 auto;
}
/* Konten Utama */
.adl-main-content {
padding: 30px;
}
.adl-section {
margin-bottom: 40px;
padding-bottom: 30px;
border-bottom: 1px solid #eee;
}
.adl-section-title {
font-family: var(–adl-font-heading);
font-size: 1.8rem;
color: var(–adl-primary);
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 3px solid var(–adl-secondary);
display: inline-block;
}
.adl-info-card {
background: var(–adl-light);
border-radius: var(–adl-radius);
padding: 25px;
margin-bottom: 25px;
position: relative;
overflow: hidden;
transition: var(–adl-transition);
}
.adl-info-card:hover {
transform: translateY(-5px);
box-shadow: var(–adl-shadow);
}
.adl-info-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: var(–adl-secondary);
}
.adl-card-title {
font-family: var(–adl-font-heading);
font-size: 1.4rem;
color: var(–adl-dark);
margin-bottom: 15px;
}
.adl-cost-list {
list-style: none;
margin: 0;
padding: 0;
width: 100%;
border-collapse: collapse;
}
.adl-cost-item {
padding: 12px 0;
border-bottom: 1px dashed #ddd;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.adl-cost-item:last-child {
border-bottom: none;
}
.adl-cost-category {
font-weight: 500;
flex: 1;
min-width: 150px;
padding-right: 10px;
}
.adl-cost-value {
color: #e74c3c;
font-weight: 700;
flex: 0 0 auto;
text-align: right;
min-width: 200px;
}
.adl-source {
font-size: 0.85rem;
color: #7f8c8d;
margin-top: 15px;
display: block;
}
.adl-source a {
color: var(–adl-secondary);
text-decoration: none;
}
.adl-source a:hover {
text-decoration: underline;
}
/* Tabel Perbandingan */
.adl-comparison-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
box-shadow: var(–adl-shadow);
border-radius: var(–adl-radius);
overflow: hidden;
}
.adl-comparison-table th {
background: var(–adl-primary);
color: white;
font-weight: 500;
padding: 15px;
text-align: left;
}
.adl-comparison-table td {
padding: 12px 15px;
border-bottom: 1px solid #eee;
}
.adl-comparison-table tr:nth-child(even) {
background-color: #f9f9f9;
}
.adl-comparison-table tr:hover {
background-color: #f1f9ff;
}
.adl-city-header {
background: var(–adl-secondary) !important;
font-weight: 600 !important;
}
.adl-highlight {
background-color: rgba(52, 152, 219, 0.1) !important;
font-weight: 600;
}
/* Summary */
.adl-summary {
background: linear-gradient(135deg, #1a2a3a, #2c3e50);
color: white;
padding: 30px;
border-radius: var(–adl-radius);
margin-top: 30px;
}
.adl-summary-title {
font-family: var(–adl-font-heading);
font-size: 1.6rem;
margin-bottom: 20px;
color: white;
text-align: center;
}
.adl-summary-content {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 20px;
}
.adl-summary-item {
text-align: center;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: var(–adl-radius);
flex: 1;
min-width: 200px;
}
.adl-summary-value {
font-size: 1.8rem;
font-weight: 700;
margin: 10px 0;
color: var(–adl-secondary);
}
.adl-summary-label {
font-size: 1rem;
opacity: 0.9;
}
/* Responsif */
@media (max-width: 768px) {
.adl-title {
font-size: 2rem;
}
.adl-section-title {
font-size: 1.5rem;
}
.adl-comparison-table {
display: block;
overflow-x: auto;
}
.adl-summary-content {
flex-direction: column;
}
}
/* Animasi */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.adl-animate {
animation: fadeIn 0.6s ease-out forwards;
}
.rp-container {
max-width: 1400px; /* Diperlebar untuk layar besar */
margin: 0 auto;
padding: 20px;
}
.rp-header {
text-align: center;
margin-bottom: 40px;
}
.rp-main-title {
font-size: 2.5rem;
font-weight: 600;
color: var(–rp-dark);
margin-bottom: 10px;
position: relative;
display: inline-block;
}
.rp-subtitle {
color: var(–rp-gray);
font-size: 1.1rem;
max-width: 600px;
margin: 20px auto 0;
line-height: 1.6;
}
.rp-cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Responsif penuh */
gap: 30px;
}
.rp-card {
background: #fff;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
overflow: hidden;
transition: var(–rp-transition);
transform: translateY(0);
position: relative;
height: 100%; /* Tinggi penuh */
}
.rp-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(67, 97, 238, 0.15);
}
.rp-card::before {
content: ”;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(–rp-primary), var(–rp-accent));
opacity: 0;
transition: var(–rp-transition);
}
.rp-card:hover::before {
opacity: 1;
}
.rp-card-img-container {
overflow: hidden;
position: relative;
height: 220px; /* Lebih tinggi */
}
.rp-card-img {
width: 100%;
height: 180%;
object-fit: cover;
transition: var(–rp-transition);
}
.rp-card:hover .rp-card-img {
transform: scale(1.05);
}
.rp-card-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.rp-card-title {
font-size: 1rem; /* Sedikit lebih besar */
font-weight: 600;
margin: 0 0 15px;
color: var(–rp-dark);
line-height: 1.4;
transition: var(–rp-transition);
text-align: center;
}
.rp-card:hover .rp-card-title {
color: var(–rp-primary);
}
.rp-read-more {
margin-top: auto;
text-align: center;
color: white;
background-color: #007bff;
border-radius:50px;
}
.rp-read-more-link {
display: inline-flex;
align-items: center;
text-decoration: none;
color: white;
font-weight: 500;
transition: var(–rp-transition);
padding: 8px 0;
font-size: 1.1rem;
}
.rp-read-more-link:hover {
color: var(–rp-secondary);
}
/* Layar sangat lebar (Desktop besar) */
@media (min-width: 1600px) {
.rp-cards-container {
grid-template-columns: repeat(3, 1fr); /* Tiga kolom dengan lebar sama */
}
.rp-card-img-container {
height: 250px; /* Lebih tinggi di layar lebar */
}
.rp-card-content {
padding: 30px;
}
.rp-card-title {
font-size: 1.5rem;
}
}
/* Tablet dan Desktop kecil */
@media (max-width: 1199px) {
.rp-cards-container {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.rp-card-img-container {
height: 200px;
}
}
/* Mobile */
@media (max-width: 768px) {
.rp-main-title {
font-size: 2rem;
}
.rp-cards-container {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}
}
.rp-loader {
display: flex;
justify-content: center;
padding: 40px 0;
grid-column: 1 / -1; /* Loader memenuhi seluruh lebar */
}
.rp-loader-dot {
width: 12px;
height: 12px;
background: var(–rp-primary);
border-radius: 50%;
margin: 0 5px;
animation: rp-loader 1.2s infinite ease-in-out both;
}
.rp-loader-dot:nth-child(1) { animation-delay: -0.32s; }
.rp-loader-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes rp-loader {
0%, 80%, 100% { transform: scale(0); }
40% { transform: scale(1); }
}
.rp-no-posts {
text-align: center;
color: var(–rp-gray);
padding: 40px 0;
font-size: 1.2rem;
grid-column: 1 / -1; /* Memenuhi seluruh lebar */
}
Biaya Hidup Mahasiswa Internasional di Adelaide
Panduan lengkap untuk memahami pengeluaran mingguan dan bulanan, penghasilan part-time, serta perbandingan dengan kota besar lainnya di Australia
Biaya Hidup di Adelaide
Pengeluaran Mingguan & Bulanan
-
Sewa kamar bersama (shared)
A$300–600/minggu (A$1.200–2.400/bulan) -
Belanja bahan makanan
A$60–200/minggu (A$240–800/bulan) -
Tagihan utilitas (listrik, air, gas)
A$45–50/minggu (A$180–200/bulan) -
Transportasi umum
A$15/minggu (A$60/bulan) -
Telekomunikasi (telepon & internet)
A$25/minggu (A$100/bulan) -
Hiburan dan rekreasi
A$80/minggu (A$320/bulan)
Sumber: University of Adelaide
Detail Biaya Tambahan
-
Sewa tempat independen
Biasanya lebih tinggi dari shared accommodation -
Pakaian (contoh: sepasang jins)
Sekitar A$100 -
Asuransi Kesehatan (OSHC)
A$806/tahun (A$67/bulan)
Sumber: University of Adelaide, Numbeo, Australian National University
Gaji Part-time Mahasiswa
Penghasilan di Adelaide
-
Jam kerja yang diizinkan
Maksimal 48 jam per dua minggu (24 jam/minggu) -
Upah minimum per jam (sejak 1 Juli 2024)
Sekitar A$24,10 per jam -
Pendapatan kotor bulanan (24 jam/minggu)
A$2.300 (sebelum pajak) -
Rentang upah per jam (ritel/restoran)
A$20–25 per jam
Sumber: ABC Australia
Perbandingan dengan Kota Lain di Australia
| Kategori | Adelaide (A$/bulan) | Sydney (A$/bulan) | Melbourne (A$/bulan) | Brisbane (A$/bulan) |
|---|---|---|---|---|
| Sewa Akomodasi | 1.200–2.400 | 980–3.500 | ~1.800 (1-bed) | 950–2.686 |
| Makanan & Pokok | 240–800 | 1.000–2.500 | 600–1.000 | 463–940 |
| Transportasi | ~60 (MetroCard) | 130–800 | 120–240 | 39–65 |
| Hiburan/Rekreasi | ~320 | 350–650 | 120–600 | (tidak spesifik) |
| Telekomunikasi/Internet | ~100 | 30–100 | 60–120 | 15–150 |
| Asuransi Kesehatan (OSHC) | ~67 | ~67 | ~67 | ~67 |
Kesimpulan Perbandingan
Adelaide memiliki biaya hidup yang relatif lebih rendah dibandingkan kota-kota besar Australia lainnya:
- Sydney memiliki biaya hidup tertinggi (sewa hingga A$3.500/bulan)
- Melbourne berada di posisi kedua
- Adelaide dan Brisbane lebih terjangkau
- Makanan dan hiburan di Adelaide lebih murah daripada Sydney dan Melbourne
- Transportasi umum di Adelaide terbilang murah (~A$60/bulan)
- Upah part-time relatif seragam di semua kota (~A$24,10/jam)
Sumber: Situs resmi universitas (Adelaide, Sydney, RMIT, UQ) dan Study Australia
Kesimpulan Utama
// Animasi saat halaman dimuat
document.addEventListener(‘DOMContentLoaded’, function() {
// Animasi untuk elemen dengan kelas adl-animate
const animatedElements = document.querySelectorAll(‘.adl-animate’);
animatedElements.forEach((element, index) => {
// Set delay untuk efek berurutan
element.style.animationDelay = `${index * 0.2}s`;
});
// Highlight baris tabel saat dihover
const tableRows = document.querySelectorAll(‘.adl-comparison-table tbody tr’);
tableRows.forEach(row => {
row.addEventListener(‘mouseenter’, () => {
row.style.backgroundColor = ‘#e3f2fd’;
});
row.addEventListener(‘mouseleave’, () => {
row.style.backgroundColor = ”;
});
});
});
function handleBlogPosts(json) {
const entries = json.feed.entry || [];
const container = document.getElementById(‘recent-posts’);
// Filter artikel hanya dengan tag “Bedah jurusan”
const filteredEntries = entries.filter(entry => {
if (!entry.category) return false;
return entry.category.some(cat =>
cat.term.toLowerCase() === “living cost”
);
});
if (filteredEntries.length === 0) {
container.innerHTML = ‘
Tidak ada postingan ditemukan untuk tag “Australia”.
‘;
return;
}
container.innerHTML = ”;
filteredEntries.slice(0, 3).forEach(entry => {
const title = entry.title.$t;
const link = entry.link.find(l => l.rel === ‘alternate’).href;
const content = entry.content.$t;
const parser = new DOMParser();
const doc = parser.parseFromString(content, ‘text/html’);
const img = doc.querySelector(‘img’);
const imgSrc = img ? img.src : ‘https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=600&h=400&q=80’;
const card = document.createElement(‘div’);
card.className = ‘rp-card’;
card.innerHTML = `
${title}
`;
container.appendChild(card);
});
}
(function() {
const script = document.createElement(‘script’);
script.src = ‘https://blog.starshipeducation.com/feeds/posts/default?alt=json-in-script&callback=handleBlogPosts’;
document.body.appendChild(script);
})();
Australia
Inggris
USA
Canada
Singapore
Malaysia