File size: 936 Bytes
71677c2 45a0f1e 71677c2 45a0f1e 71677c2 45a0f1e 71677c2 45a0f1e 71677c2 45a0f1e 71677c2 45a0f1e 71677c2 | 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 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri+Quran&display=swap');
body {
line-height: 1.6;
}
.arabic-text {
font-family: 'Amiri Quran', serif;
font-size: 1.5rem;
line-height: 2.5rem;
direction: rtl;
}
.surah-card {
transition: all 0.3s ease;
}
.surah-card:hover {
transform: translateY(-5px);
}
.search-input {
transition: all 0.3s ease;
}
.search-input:focus {
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}
.verse-container {
border-left: 3px solid #3498db;
padding-left: 1rem;
margin-bottom: 1.5rem;
}
.verse-number {
background-color: #3498db;
color: white;
width: 28px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 0.8rem;
margin-right: 0.5rem;
} |