30 lines
No EOL
550 B
CSS
30 lines
No EOL
550 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Cantarell&display=swap');
|
|
* {
|
|
/* Some global vars for colors*/
|
|
--text: #0c0311;
|
|
--background: #fdfbfe;
|
|
--primary: #9b41d8;
|
|
--secondary: #d7b3ef;
|
|
--accent: #7924b2;
|
|
|
|
font-family: Cantarell, serif;
|
|
}
|
|
body {
|
|
background: var(--background);
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td, th {
|
|
border: 1px solid var(--accent);
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: var(--secondary);
|
|
}
|
|
footer {
|
|
font-size: small;
|
|
} |