feat: initialize microservice architecture with auth, api, realtime, copernicus, ml, and console modules
This commit is contained in:
26
console/src/static/styles/dashboard.css
Normal file
26
console/src/static/styles/dashboard.css
Normal file
@@ -0,0 +1,26 @@
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
.card[title="Live"] {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.card[title="Live"]::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: -1;
|
||||
background: linear-gradient(135deg, #ff00d0, #0026ff);
|
||||
filter: blur(40px);
|
||||
opacity: 0;
|
||||
transition: opacity 0.7s ease;
|
||||
border-radius: inherit;
|
||||
}
|
||||
|
||||
.card[title="Live"]:hover::before {
|
||||
opacity: 0.2;
|
||||
}
|
||||
Reference in New Issue
Block a user