45 lines
687 B
CSS
45 lines
687 B
CSS
body {
|
|
background: white;
|
|
color: black;
|
|
}
|
|
|
|
.panel {
|
|
background: #FFF;
|
|
border: #e5f0ff 1px solid;
|
|
border-radius: 10px;
|
|
color: #2d6bdb;
|
|
}
|
|
|
|
.meta-block h3 {
|
|
color: goldenrod;
|
|
border-top: 3px lightgray solid;
|
|
}
|
|
|
|
table {
|
|
color: #6e1f00;
|
|
border: #ffa6f6 1px solid;
|
|
border-radius: 6px;
|
|
}
|
|
table tr:hover,
|
|
table tr.active {
|
|
background: #ffc3c3;
|
|
}
|
|
th {
|
|
background: oklch(62.5% 0.291 308.12);
|
|
background: linear-gradient(0deg,#d99dff,#c4d7f9);
|
|
/* box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.5);*/
|
|
}
|
|
|
|
|
|
|
|
a, a:visited {
|
|
color: #9c008b;
|
|
color: oklch(0.47 0.22 334.15);
|
|
}
|
|
|
|
:root {
|
|
/*--font-gradient: linear-gradient(90deg,#7209d4,#2832d4 33%,#00a5b2);*/
|
|
}
|
|
.filter {
|
|
background: #FFF;
|
|
} |