PhysLean/docs/CuratedNotes/index.html
2025-03-04 06:21:04 +00:00

82 lines
1.8 KiB
HTML

---
layout: default
---
<div class="curated-notes">
<h1 class="title">Curated Notes</h1>
<div class="notes-container">
<!-- Harmonic Oscillator -->
<div class="note-card">
<h2 style="text-align: center;">Quantum Harmonic Oscillator</h2>
<p class="description">The formalization of the quantum harmonic oscillator.</p>
<a href="HarmonicOscillator" class="note-link">Read More →</a>
</div>
<!-- End Harmonic Oscillator -->
<!-- Wick's theorem -->
<div class="note-card">
<h2 style="text-align: center;">Wick's theorem</h2>
<p class="description">The formalization of the proof of Wick's theorem in perturbation theory.</p>
<a href="WickTheorem" class="note-link">Read More →</a>
</div>
<!-- End Wick's theorem -->
<!-- Higgs potential -->
<div class="note-card">
<h2 style="text-align: center;">Higgs potential</h2>
<p class="description">The formalization of properties of the Higgs potential.</p>
<a href="HiggsPotential" class="note-link">Read More →</a>
</div>
<!-- End Wick's theorem -->
</div>
</div>
<style>
.curated-notes {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
.title {
text-align: center;
color: #2c3e50;
margin-bottom: 2rem;
}
.notes-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.note-card {
background: #ffffff;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.2s ease;
}
.note-card:hover {
transform: translateY(-5px);
}
.note-card h2 {
color: #34495e;
margin-bottom: 1rem;
}
.description {
color: #666;
margin-bottom: 1.5rem;
}
.note-link {
display: inline-block;
color: #2c3e50;
text-decoration: none;
font-weight: bold;
}
.note-link:hover {
color: #2980b9;
}
</style>