Files
cv-site/tests/check-styling.html
T
2025-11-06 09:19:44 +00:00

77 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Styling Comparison</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
background: #f0f0f0;
}
.comparison {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
max-width: 1400px;
margin: 0 auto;
}
.panel {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h2 {
margin-top: 0;
color: #333;
}
img {
width: 100%;
border: 1px solid #ddd;
}
.specs {
margin-top: 10px;
font-family: monospace;
font-size: 12px;
background: #f9f9f9;
padding: 10px;
border-left: 3px solid #4CAF50;
}
.specs div {
margin: 5px 0;
}
</style>
</head>
<body>
<h1 style="text-align: center;">CV Header Styling Comparison</h1>
<div class="comparison">
<div class="panel">
<h2>Original Design</h2>
<img src="../screenshots/old-full-rendered.png" alt="Original">
<div class="specs">
<div><strong>Expected Styling:</strong></div>
<div>• Font: Quicksand</div>
<div>• Size: ~0.85em (smaller than name)</div>
<div>• Weight: 400 (normal)</div>
<div>• Color: #666 (medium gray)</div>
<div>• Margin: minimal (4px top)</div>
<div>• Alignment: left with name</div>
</div>
</div>
<div class="panel">
<h2>Current Implementation</h2>
<img src="../../tmp/cv-years-test.png" alt="Current">
<div class="specs">
<div><strong>Applied CSS:</strong></div>
<div>font-family: 'Quicksand', sans-serif;</div>
<div>font-size: 0.85em;</div>
<div>font-weight: 400;</div>
<div>color: #666;</div>
<div>margin: 4px 0 0 0;</div>
<div>line-height: 1.4;</div>
</div>
</div>
</div>
</body>
</html>