-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
249 lines (239 loc) · 16 KB
/
Copy pathabout.html
File metadata and controls
249 lines (239 loc) · 16 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tentang Kami - Sekolah Kajian Budaya</title>
<style>
:root {
--brand-red: #c0172e;
--text-dark: #333;
--text-gray: #666;
--bg-light: #f5f5f5;
--border-color: #ddd;
--bg-krem: #faf8f5;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
body { color: var(--text-dark); overflow-x: hidden; background-color: var(--bg-krem); }
a { text-decoration: none; color: inherit; }
.bulletin-feed-card { background: white; padding: 25px; border: 1px solid #ebdcd0; border-radius: 2px; margin-bottom: 24px; font-family: 'Georgia', serif; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.feed-category { color: var(--brand-red); font-family: Arial, sans-serif; font-size: 0.75rem; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }
.feed-title { font-size: 1.5rem; margin: 8px 0 12px 0; line-height: 1.3; color: #2c2520; font-weight: bold; }
.feed-title a:hover { color: var(--brand-red); }
.feed-snippet { font-size: 0.95rem; color: #5c5247; margin-bottom: 18px; text-align: justify; line-height: 1.6; font-family: 'Georgia', serif; }
.feed-readmore { display: inline-block; font-family: Arial, sans-serif; font-size: 0.8rem; color: var(--brand-red); font-weight: bold; text-transform: uppercase; border-bottom: 1px dashed var(--brand-red); padding-bottom: 2px; transition: all .2s; }
.feed-readmore:hover { color: #2c2520; border-color: #2c2520; }
.main-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; border-bottom: 1px solid var(--border-color); background: white; position: sticky; top: 0; z-index: 100; }
.logo-placeholder { font-size: 1.5rem; font-weight: bold; color: var(--text-dark); display: flex; align-items: center; justify-content: center; gap: 10px; flex: 1; min-width: 0; }
.logo-placeholder span { color: var(--brand-red); }
.site-logo { height: 128px; width: auto; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 2px solid var(--text-dark); background: white; font-size: 24px; cursor: pointer; border-radius: 3px; }
.search-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 2px solid var(--text-dark); background: white; cursor: pointer; border-radius: 3px; padding: 0; }
.search-btn img { width: 18px; height: 18px; display: block; filter: brightness(0); }
#menu-toggle { display: none; }
.sidebar { position: fixed; top: 0; left: -300px; width: 250px; height: 100vh; background-color: var(--bg-light); box-shadow: 2px 0 5px rgba(0,0,0,0.1); transition: left 0.3s ease; z-index: 999; overflow-y: auto; border-right: 2px solid var(--border-color); }
#menu-toggle:checked ~ .sidebar { left: 0; }
.close-btn { display: block; width: 40px; height: 40px; border: 2px solid var(--text-dark); text-align: center; line-height: 36px; font-size: 20px; margin: 10px; cursor: pointer; background: white; }
.sidebar-menu { list-style: none; padding: 20px; }
.sidebar-menu li { margin-bottom: 15px; }
.sidebar-menu a.main-link, .sidebar-menu .main-link { font-weight: bold; color: var(--brand-red); font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; padding: 0; text-align: left; cursor: pointer; }
.sidebar-dropdown { display: block; }
.sidebar-dropdown summary { list-style: none; cursor: pointer; }
.sidebar-dropdown summary::-webkit-details-marker { display: none; }
.sidebar-dropdown .caret { transition: transform .2s ease; font-size: 1rem; }
.sidebar-dropdown[open] .caret { transform: rotate(180deg); }
.sidebar-submenu { list-style: none; padding-left: 15px; margin-top: 10px; display: none; }
.sidebar-dropdown[open] .sidebar-submenu { display: block; }
.sidebar-submenu li { margin-bottom: 12px; font-size: 0.95rem; font-weight: 500; }
.sidebar-submenu a:hover { color: var(--brand-red); }
.main-content { padding: 24px 20px 40px 20px; max-width: 1100px; margin: 0 auto; }
.section-label { color: var(--brand-red); font-weight: bold; font-size: 0.8rem; margin-bottom: 16px; text-transform: uppercase; }
.content-page { background: white; border: 1px solid #ebdcd0; border-radius: 2px; padding: 28px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.content-page h1 { font-size: 2rem; line-height: 1.25; margin-bottom: 12px; color: #2c2520; }
.content-page .intro { font-family: 'Georgia', serif; font-size: 1rem; line-height: 1.75; color: #5c5247; margin-bottom: 24px; text-align: justify; }
.about-block { margin-bottom: 22px; }
.about-block h2 { font-size: 1.15rem; color: #2c2520; margin-bottom: 10px; }
.about-block p { font-family: 'Georgia', serif; font-size: 0.98rem; line-height: 1.75; color: #5c5247; text-align: justify; margin-bottom: 10px; }
.about-note { margin-top: 24px; padding-top: 18px; border-top: 1px solid #ebdcd0; font-family: 'Georgia', serif; font-size: 0.95rem; line-height: 1.7; color: #5c5247; }
.custom-footer { background-color: #333333; color: #ffffff; padding: 50px 20px 20px 20px; margin-top: 50px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-logo { font-size: 2rem; font-weight: bold; margin-bottom: 20px; font-family: 'Times New Roman', Times, serif; }
.footer-logo span { color: #c0172e; }
.footer-top-links { list-style: none; padding: 0; margin-bottom: 30px; }
.footer-top-links li { margin-bottom: 12px; }
.footer-top-links a { color: #e0e0e0; font-size: 1rem; transition: color 0.3s; }
.footer-top-links a:hover { color: #ffffff; }
.footer-categories { display: flex; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; border-top: 1px solid #555; border-bottom: 1px solid #555; padding: 30px 0; }
.cat-col { flex: 1; min-width: 140px; }
.cat-col h4 { font-size: 1rem; margin-bottom: 15px; font-weight: bold; color: #ffffff; }
.cat-col ul { list-style: none; padding: 0; }
.cat-col ul li { margin-bottom: 8px; }
.cat-col ul a { color: #bbbbbb; font-size: 0.9rem; }
.cat-col ul a:hover { color: #ffffff; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-bottom: 30px; font-size: 0.9rem; }
.footer-bottom-links a { color: #e0e0e0; }
.btn-pmii { background-color: #ffffff; color: #333333 !important; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.85rem; }
.footer-social { display: flex; gap: 15px; margin-bottom: 20px; font-size: 1.2rem; }
.footer-copyright { color: #888888; font-size: 0.8rem; }
@media (max-width: 768px) { .main-header { padding: 16px; } .logo-placeholder { font-size: 1.1rem; } .site-logo { height: 80px; } }
</style>
</head>
<body>
<input type="checkbox" id="menu-toggle">
<aside class="sidebar">
<label for="menu-toggle" class="close-btn">✕</label>
<ul class="sidebar-menu">
<li><a href="index.html" class="main-link">Home</a></li>
<li><a href="pengumuman/index.html" class="main-link">Pengumuman</a></li>
<li>
<details class="sidebar-dropdown">
<summary class="main-link">Kajian <span class="caret">▾</span></summary>
<ul class="sidebar-submenu">
<li><a href="category/pendidikan.html">Pendidikan</a></li>
<li><a href="category/politik.html">Politik</a></li>
<li><a href="category/teknologi.html">Teknologi</a></li>
<li><a href="category/kultur.html">Kultur</a></li>
</ul>
</details>
</li>
<li>
<details class="sidebar-dropdown">
<summary class="main-link">Tulisan <span class="caret">▾</span></summary>
<ul class="sidebar-submenu">
<li><a href="tulisan/essay/index.html">Essay</a></li>
<li><a href="tulisan/opini/index.html">Opini</a></li>
<li><a href="tulisan/cerpen/index.html">Cerpen</a></li>
<li><a href="tulisan/puisi/index.html">Puisi</a></li>
<li><a href="tulisan/review-buku/index.html">Review Buku</a></li>
</ul>
</details>
</li>
<li>
<details class="sidebar-dropdown">
<summary class="main-link">Arsip <span class="caret">▾</span></summary>
<ul class="sidebar-submenu">
<li><a href="arsip/modul/index.html">Modul</a></li>
<li><a href="arsip/tor/index.html">TOR</a></li>
<li><a href="arsip/foto/index.html">Foto</a></li>
<li><a href="arsip/video/index.html">Video</a></li>
<li><a href="lainnya/bulletin/index.html">Bulletin</a></li>
</ul>
</details>
</li>
<li>
<details class="sidebar-dropdown">
<summary class="main-link">Lainnya <span class="caret">▾</span></summary>
<ul class="sidebar-submenu">
<li><a href="lainnya/podcast/index.html">Podcast</a></li>
<li><a href="lainnya/bedah-buku/index.html">Bedah Buku</a></li>
<li><a href="lainnya/diskusi/index.html">Diskusi</a></li>
</ul>
</details>
</li>
</ul>
</aside>
<header class="main-header">
<div class="header-actions">
<label for="menu-toggle" class="hamburger-btn" aria-label="Buka menu">☰</label>
</div>
<div class="logo-placeholder">
<img src="assets/logo.png" alt="Logo Sekolah Kajian Budaya" class="site-logo">
<span>SEKOLAH</span>KAJIAN BUDAYA
</div>
<div class="header-actions">
<button class="search-btn" type="button" aria-label="Cari">
<img src="https://cdn-icons-png.flaticon.com/512/151/151773.png" alt="Ikon pencarian">
</button>
</div>
</header>
<main class="main-content">
<div class="section-label">TENTANG KAMI</div>
<article class="content-page">
<h1>Tentang Sekolah Kajian Budaya</h1>
<p class="intro">Sekolah Kajian Budaya adalah ruang publikasi, dokumentasi, dan pembelajaran yang memuat tulisan, arsip, opini, puisi, diskusi, serta berbagai kegiatan kebudayaan. Situs ini disiapkan sebagai tempat merawat gagasan dan menyusun kembali percakapan intelektual yang lahir dari lingkungan gerakan PMII ADHUM.</p>
<section class="about-block">
<h2>1. Apa yang Kami Kerjakan</h2>
<p>Kami menampung dan menata konten yang berkaitan dengan literasi budaya, karya tulis, arsip kegiatan, serta informasi organisasi. Tujuannya adalah membuat konten lebih mudah ditemukan, dibaca ulang, dan dimanfaatkan oleh kader maupun pembaca umum.</p>
</section>
<section class="about-block">
<h2>2. Arah Gerakan</h2>
<p>Fokus kami adalah mendorong tradisi intelektual yang rapi, kritis, dan terbuka. Melalui publikasi yang sederhana namun konsisten, Sekolah Kajian Budaya ingin membantu membangun ruang diskusi yang sehat sekaligus menjaga jejak kegiatan komunitas tetap terdokumentasi.</p>
</section>
<section class="about-block">
<h2>3. Konteks Komunitas</h2>
<p>Situs ini dijalankan dalam ekosistem PMII Rayon Adab dan Humaniora UIN Sunan Gunung Djati Bandung. Karena itu, isinya banyak berkaitan dengan kegiatan kader, publikasi internal, dan jejaring kebudayaan yang tumbuh dari komunitas tersebut.</p>
</section>
<p class="about-note">Jika Anda ingin mengenal arah kerja sama, dokumentasi kegiatan, atau ruang publikasi yang tersedia, seluruh informasi dasar sudah ditata di halaman-halaman lain dalam situs ini.</p>
</article>
</main>
<footer class="custom-footer">
<div class="footer-container">
<div class="footer-logo">
<img src="assets/logo.png" alt="Logo Sekbud Bawah" style="height: 60px; width: auto;">
</div>
<ul class="footer-top-links">
<li><a href="about.html">Tentang Kami</a></li>
<li><a href="tos.html">Syarat & Ketentuan</a></li>
<li><a href="contact.html">Kontak Kami</a></li>
<li><a href="privacy.html">Kebijakan Privasi</a></li>
</ul>
<div class="footer-categories">
<div class="cat-col">
<h4><a href="index.html" style="color: white; text-decoration: none;">Home</a></h4>
<h4><a href="pengumuman/index.html" style="color: white; text-decoration: none;">Pengumuman</a></h4>
</div>
<div class="cat-col">
<h4>Kajian</h4>
<ul>
<li><a href="category/pendidikan.html">Pendidikan</a></li>
<li><a href="category/politik.html">Politik</a></li>
<li><a href="category/teknologi.html">Teknologi</a></li>
<li><a href="category/kultur.html">Kultur</a></li>
</ul>
</div>
<div class="cat-col">
<h4>Tulisan</h4>
<ul>
<li><a href="tulisan/essay/index.html">1. Essay</a></li>
<li><a href="tulisan/opini/index.html">2. Opini</a></li>
<li><a href="tulisan/cerpen/index.html">3. Cerpen</a></li>
<li><a href="tulisan/puisi/index.html">4. Puisi</a></li>
<li><a href="tulisan/review-buku/index.html">5. Review Buku</a></li>
</ul>
</div>
<div class="cat-col">
<h4>Arsip</h4>
<ul>
<li><a href="arsip/modul/index.html">1. Modul</a></li>
<li><a href="arsip/tor/index.html">2. TOR</a></li>
<li><a href="arsip/foto/index.html">3. Foto</a></li>
<li><a href="arsip/video/index.html">4. Vidio</a></li>
</ul>
</div>
<div class="cat-col">
<h4>Lainnya</h4>
<ul>
<li><a href="lainnya/podcast/index.html">1. Podcast</a></li>
<li><a href="lainnya/bedah-buku/index.html">2. Bedah Buku</a></li>
<li><a href="lainnya/diskusi/index.html">3. Diskusi</a></li>
</ul>
</div>
</div>
<div class="footer-bottom-links">
<a href="kerjasama.html">Kerjasama & Portofolio</a>
<a href="submit.html">Undangan Menulis</a>
<a href="donate.html">Premium</a>
<a href="https://www.youtube.com/@pmiiadhumchanel5809">Youtube</a>
<a href="#" class="btn-pmii">PMII ADHUM</a>
</div>
<div class="footer-social">
<span>📷</span> <span>🐦</span> <span>▶️</span> <span>📘</span> <span>🎵</span>
</div>
<div class="footer-copyright">
© 2026, Web Sekolah Kajian Budaya (PMII ADHUM).
</div>
</div>
</footer>
</body>
</html>