add quality issue

This commit is contained in:
Julien Calixte
2023-07-22 17:34:26 +02:00
parent 1579e2598e
commit 05e89f6b03
7 changed files with 115 additions and 39 deletions

View File

@@ -1,3 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap');
:root {
--feature-item-height: 70px;
}
ul {
list-style: none;
padding: 0;
@@ -8,7 +14,7 @@ ul {
border: 3px solid var(--background-color);
color: var(--background-color);
background-color: white;
height: 62px;
height: var(--feature-item-height);
display: flex;
flex-direction: column;
justify-content: center;
@@ -32,3 +38,8 @@ ul {
color: white;
transition-delay: 3s;
}
.numeric {
font-family: 'Cutive Mono', monospace;
font-weight: bold;
}