23 lines
369 B
CSS
23 lines
369 B
CSS
.metricsPage {
|
|
min-height: 100vh;
|
|
padding: 2rem;
|
|
background: #1a1a1a;
|
|
color: white;
|
|
}
|
|
|
|
.metricsPage h1 {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.backLink {
|
|
display: inline-block;
|
|
color: #888;
|
|
text-decoration: none;
|
|
margin-bottom: 2rem;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.backLink:hover {
|
|
color: white;
|
|
} |