mstar-webserver/static/styles/index.css

51 lines
870 B
CSS
Raw Permalink Normal View History

@import url('https://fonts.googleapis.com/css2?family=Cantarell&display=swap');
2024-04-20 13:03:20 +00:00
* {
/* Some global vars for colors*/
--text: #0c0311;
--background: #fdfbfe;
--primary: #9b41d8;
--secondary: #d7b3ef;
--accent: #7924b2;
font-family: Cantarell, serif;
}
2024-04-20 13:03:20 +00:00
table {
border-collapse: collapse;
}
td, th {
2024-04-20 13:03:20 +00:00
border-width: 1px;
border-style: solid;
border-color: #7924b2;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: var(--secondary);
}
2024-04-20 13:03:20 +00:00
footer {
font-size: small;
2024-04-20 13:03:20 +00:00
}
.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);
}