Theme everything nicer with transparency and background the sentiment

This commit is contained in:
2022-08-28 17:39:02 +01:00
parent 3050b96baa
commit 24a5af32e2
6 changed files with 102 additions and 49 deletions

View File

@@ -111,6 +111,57 @@
.rounded-tooltip:hover .tooltiptext {
visibility: visible;
}
#sentiment-container {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100vh;
width: 100vw;
z-index: -2;
}
.table {
background: transparent !important;
}
tr {
transition: all 0.2s ease-in-out;
}
tr:hover {
cursor:pointer;
background-color:rgba(221, 224, 255, 0.3) !important;
}
a.panel-block {
transition: all 0.2s ease-in-out;
}
a.panel-block:hover {
cursor:pointer;
background-color:rgba(221, 224, 255, 0.3) !important;
}
.panel, .box {
background-color:rgba(250, 250, 250, 0.5) !important;
}
.modal{
background-color:rgba(255, 255, 255, 0.9) !important;
}
.modal-background{
background-color:rgba(255, 255, 255, 0.3) !important;
}
.has-background-grey-lighter{
background-color:rgba(219, 219, 219, 0.5) !important;
}
.navbar {
background-color: transparent !important;
}
</style>
</head>
<body>