* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: “Segoe UI”, sans-serif;
}
body {
background: #f4f7fb;
color: #1f2937;
}
section {
padding: 80px 30px;
text-align: center;
}
h2 {
font-size: 32px;
margin-bottom: 12px;
}
p.intro {
max-width: 720px;
margin: 0 auto 50px;
font-size: 15px;
color: #4b5563;
line-height: 1.6;
}
h3.group-title {
text-align: left;
max-width: 1200px;
margin: 60px auto 20px;
font-size: 22px;
font-weight: 700;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
max-width: 1200px;
margin: auto;
}
.card {
border-radius: 36px;
padding: 24px;
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
background: #fff;
transition: 0.4s ease;
opacity: 0;
transform: translateY(50px);
}
.card.show {
opacity: 1;
transform: translateY(0);
}
.card h4 {
font-size: 18px;
margin-bottom: 6px;
}
.card p.desc {
font-size: 13px;
color: #4b5563;
min-height: 36px;
}
.img-box {
background: #f0f0f0;
border-radius: 24px;
padding: 20px;
margin: 18px 0;
height: 140px;
display: flex;
align-items: center;
justify-content: center;
}
.img-box img {
max-height: 100px;
max-width: 100%;
object-fit: contain;
}
.card a {
display: block;
margin-top: 16px;
padding: 12px;
background: #7c9fd6;
color: #fff;
border-radius: 16px;
text-decoration: none;
font-weight: 600;
transition: 0.3s ease;
}
.card a:hover {
background: #5c7eb1;
}
.card:hover {
transform: translateY(-10px);
}
@media(max-width: 768px) {
section {
padding: 60px 20px;
}
}
Layanan E-Magazine
Perpustakaan menyediakan akses ke berbagai majalah digital nasional dan internasional
untuk mendukung literasi akademik dan pengayaan wawasan mahasiswa ISQI.
E-Magazine Nasional
E-Magazine Internasional
document.addEventListener(“DOMContentLoaded”, () => {
const cards = document.querySelectorAll(“.card”);
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add(“show”);
});
}, { threshold: 0.2 });
cards.forEach(card => observer.observe(card));
});






.png)


.png)

.png)

