-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (172 loc) · 5.49 KB
/
index.html
File metadata and controls
176 lines (172 loc) · 5.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DBMS-SQL-Labs Portal</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Spline+Sans:wght@400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--ow-green: #0b5d3b;
--ow-green-dark: #07442b;
--ow-gold: #c7a34a;
--ow-cream: #f6f2e9;
--ow-ink: #122019;
--ow-moss: #1f7a56;
}
* { box-sizing: border-box; }
body {
font-family: "Spline Sans", "Trebuchet MS", sans-serif;
color: var(--ow-ink);
margin: 0;
background:
radial-gradient(circle at 10% 10%, rgba(199, 163, 74, 0.18), transparent 40%),
radial-gradient(circle at 80% 0%, rgba(11, 93, 59, 0.22), transparent 45%),
linear-gradient(160deg, #fdfbf6, var(--ow-cream));
min-height: 100vh;
}
.page {
max-width: 1040px;
margin: 0 auto;
padding: 48px 20px 64px;
}
h1, h2 {
font-family: "Fraunces", "Georgia", serif;
margin: 0 0 12px;
letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
h2 { font-size: 1.5rem; color: var(--ow-green-dark); }
p { margin: 0 0 14px; }
a { color: var(--ow-green); text-decoration: none; font-weight: 600; }
a:hover { color: var(--ow-moss); }
.hero {
display: grid;
gap: 24px;
align-items: center;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
margin-bottom: 28px;
padding: 28px;
background: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(11, 93, 59, 0.2);
border-radius: 18px;
box-shadow: 0 18px 40px rgba(10, 30, 20, 0.12);
position: relative;
overflow: hidden;
}
.hero::after {
content: "";
position: absolute;
right: -40px;
top: -40px;
width: 160px;
height: 160px;
background: radial-gradient(circle, rgba(199, 163, 74, 0.5), transparent 70%);
opacity: 0.9;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.2em;
font-size: 0.75rem;
color: var(--ow-green-dark);
font-weight: 600;
}
.lead { font-size: 1.05rem; max-width: 540px; }
.hero-card {
background: var(--ow-green);
color: #fff;
padding: 18px;
border-radius: 14px;
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.hero-card a { color: #fff; text-decoration: underline; }
.grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.panel {
background: #fff;
border-radius: 16px;
padding: 18px 18px 8px;
border: 1px solid rgba(11, 93, 59, 0.16);
box-shadow: 0 10px 24px rgba(18, 32, 25, 0.08);
animation: fadeUp 0.7s ease both;
}
.panel:nth-child(2) { animation-delay: 0.08s; }
.panel:nth-child(3) { animation-delay: 0.16s; }
.link-list {
list-style: none;
padding: 0;
margin: 0 0 12px;
}
.link-list li {
padding: 10px 12px;
margin: 8px 0;
background: rgba(11, 93, 59, 0.06);
border-radius: 10px;
border: 1px solid rgba(11, 93, 59, 0.08);
}
.accent {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 600;
color: var(--ow-green-dark);
}
.tag {
background: var(--ow-gold);
color: #1c1606;
padding: 2px 8px;
border-radius: 999px;
font-size: 0.75rem;
font-weight: 700;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
.panel { animation: none; }
}
</style>
</head>
<body>
<div class="page">
<header class="hero">
<div>
<h1>DBMS-SQL-Labs</h1>
<p class="lead">A curated launchpad for the SQL lab sequence, materials, and focused pathways. Start with the quick guide and move through the core flow in order.</p>
</div>
<div class="hero-card">
<h2>Quick Start</h2>
<p>Jump straight into setup and your first queries.</p>
<p><a href="labs/quick-start/quick-start-guide.html">Open the Quick Start Guide</a></p>
</div>
</header>
<div class="grid">
<section class="panel">
<h2>Start Here</h2>
<ul class="link-list">
<li><a href="FOCUSED_LABS.html">Focused Lab Topics</a></li>
<li><a href="labs.html">All Labs</a></li>
<li><a href="docs/COURSE_SYLLABUS.html">Course Syllabus</a></li>
<li><a href="labs/quick-start/quick-start-guide.html">Quick Start Guide</a></li>
</ul>
</section>
<section class="panel">
<h2>Core Learning Flow</h2>
<ul class="link-list">
<li><a href="labs/foundations/foundations-lab.html">Foundations</a></li>
<li><a href="labs/single-table/single-table-queries.html">Single-table Queries</a></li>
<li><a href="labs/joins-foreign-keys/joins-part1.html">Joins and Foreign Keys</a></li>
<li><a href="labs/set-nested/set-nested-queries.html">Set and Nested Queries</a></li>
<li><a href="labs/aggregation/aggregation-grouping.html">Aggregation and GROUP BY</a></li>
</ul>
</section>
</div>
</div>
</body>
</html>