51 lines
No EOL
870 B
CSS
51 lines
No EOL
870 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;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td, th {
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #7924b2;
|
|
text-align: left;
|
|
padding: 8px;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: var(--secondary);
|
|
}
|
|
|
|
footer {
|
|
font-size: small;
|
|
}
|
|
|
|
.size-to-max-inner-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
max-width: max-content;
|
|
}
|
|
|
|
.center-inner {
|
|
display: flex;
|
|
align-content: center;
|
|
flex-direction: row;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.add-background {
|
|
background: var(--background);
|
|
} |