fix teacher and parent pages text font
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?= $this->extend('layout/main_layout') ?>
|
||||
<?= $this->section('content') ?>
|
||||
<div class="container my-5">
|
||||
<h3 class="text-center text-success" style="font-family: Arial, sans-serif;">Attendance Record</h2>
|
||||
<h3 class="text-center text-success">Attendance Record</h3>
|
||||
<?php if (!empty($selectedYear)): ?>
|
||||
<div class="text-center text-muted small">School Year: <?= esc($selectedYear) ?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<?= $this->section('content') ?>
|
||||
<div class="container-xxl py-2">
|
||||
<div class="container">
|
||||
<h3 class="text-center text-danger mt-4 mb-3" style="font-family: Arial, sans-serif;">
|
||||
<h3 class="text-center text-danger mt-4 mb-3">
|
||||
Flip your phone for a zoomed out view of the calendar.
|
||||
</h3>
|
||||
|
||||
@@ -73,4 +73,4 @@
|
||||
window.calendar = calendar;
|
||||
});
|
||||
</script>
|
||||
<?= $this->endSection() ?>
|
||||
<?= $this->endSection() ?>
|
||||
|
||||
@@ -297,7 +297,7 @@ $studentCount = count($students ?? []);
|
||||
|
||||
<div class="container my-4">
|
||||
<div class="text-center mb-4">
|
||||
<h3 class="text-success" style="font-family: Arial, sans-serif;">Enroll in Classes</h3>
|
||||
<h3 class="text-success">Enroll in Classes</h3>
|
||||
<?php if (!empty($selectedYear)): ?>
|
||||
<div class="text-muted small">School Year: <?= esc($selectedYear) ?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?= $this->extend('layout/main_layout') ?>
|
||||
<?= $this->section('content') ?>
|
||||
<div class="container my-5">
|
||||
<h3 class="text-center text-success" style="font-family: Arial, sans-serif;">Events
|
||||
<h3 class="text-center text-success">Events
|
||||
<span class="badge bg-info"><?= count($activeEvents) ?></span>
|
||||
</h3>
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ if (!function_exists('formatCalendarDateOnly')) {
|
||||
?>
|
||||
|
||||
<div class="container my-5">
|
||||
<h3 class="text-center text-success" style="font-family: Arial, sans-serif;">Invoices and Payments</h3>
|
||||
<h3 class="text-center text-success">Invoices and Payments</h3>
|
||||
<?php if (!empty($selectedYear)): ?>
|
||||
<div class="text-center text-muted small">School Year: <?= esc($selectedYear) ?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
@@ -70,7 +70,7 @@ $disableEmergencyBtn = count($emergencies) >= $maxEmergency;
|
||||
<?= $this->endSection() ?>
|
||||
<?= $this->section('content') ?>
|
||||
<div class="container my-5">
|
||||
<h3 class="text-center text-success mb-3" style="font-family: Arial, sans-serif;">Student Registration</h3>
|
||||
<h3 class="text-center text-success mb-3">Student Registration</h3>
|
||||
<?php if ($selectedYear !== ''): ?>
|
||||
<div class="text-center text-muted mb-3">School year: <?= esc($selectedYear) ?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<?= $this->section('content') ?>
|
||||
|
||||
<div class="container my-5" style="max-width: 880px;">
|
||||
<h3 class="text-center text-success mb-4" style="font-family: Arial, sans-serif;">
|
||||
<h3 class="text-center text-success mb-4">
|
||||
Report Absence/Late/Early Dismissal
|
||||
</h3>
|
||||
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
<div class="container my-5">
|
||||
<div class="d-flex flex-wrap align-items-center justify-content-between gap-2 mb-3">
|
||||
<div>
|
||||
<h3 class="text-success mb-1" style="font-family: Arial, sans-serif;">Report Cards</h3>
|
||||
<h3 class="text-success mb-1">Report Cards</h3>
|
||||
<div class="text-muted small">
|
||||
<?= esc($schoolYear ?: 'N/A') ?> <?= $semester ? '• ' . esc($semester) . ' Semester' : '' ?>
|
||||
</div>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<?= $this->section('content') ?>
|
||||
<div class="container my-5">
|
||||
<div class="d-flex flex-wrap align-items-center justify-content-between gap-2">
|
||||
<h3 class="text-success mb-0" style="font-family: Arial, sans-serif;">Scores</h3>
|
||||
<h3 class="text-success mb-0">Scores</h3>
|
||||
<?php if (!empty($selectedYear)): ?>
|
||||
<div class="text-muted small">School Year: <?= esc($selectedYear) ?></div>
|
||||
<?php endif; ?>
|
||||
|
||||
Reference in New Issue
Block a user