36 lines
2.0 KiB
PHP
36 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>@yield('title',@$title) | SIDIA Jakarta</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="keywords" content="Sekolah Adiwiyata" />
|
|
<meta name="description" content="Sekolah Adiwiyata Lingkungan Hidup Provinsi DKI Jakarta">
|
|
<meta name="author" content="ilham">
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" href="{{ asset('assets/logo-dinas.ico') }}" type="image/x-icon" />
|
|
|
|
<link rel="apple-touch-icon" href="{{ asset('assets/logo-dinas.ico') }}">
|
|
<script src="{{ asset('assets/js/tailwind.js') }}"></script>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,1,0">
|
|
<style>
|
|
body { font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }
|
|
.glass { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); }
|
|
.green-gradient { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }
|
|
.hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); }
|
|
.step-card:hover { transform: translateY(-5px); transition: all 0.3s ease; }
|
|
.active-tab { border-bottom: 4px solid #10b981; color: #065f46; font-weight: 700; }
|
|
.stats-card { border-left: 4px solid #10b981; }
|
|
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
|
|
.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
|
|
</style>
|
|
@yield('css')
|
|
</head>
|
|
<body>
|
|
@yield('content')
|
|
@yield('js')
|
|
</body>
|
|
</html>
|