Spaces:
Running
Running
File size: 1,436 Bytes
89eaf8a 394073d 89eaf8a 394073d 89eaf8a 394073d 89eaf8a 394073d 89eaf8a 394073d 18dfe1b a17b0ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
.sidebar {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 500px;
z-index: 10;
background-color: rgba(10, 10, 12, 0.8);
backdrop-filter: blur(40px);
-webkit-backdrop-filter: blur(40px);
border-right: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
display: flex;
flex-direction: column;
}
.scrollArea {
padding: 20px;
flex: 1;
overflow-y: auto;
}
.locationBadge {
padding: 12px;
background-color: #25262b;
border-radius: 8px;
border: 1px solid #373a40;
margin-top: 20px;
}
.scrollArea::-webkit-scrollbar {
width: 6px;
}
.scrollArea::-webkit-scrollbar-thumb {
background-color: #373a40;
border-radius: 3px;
}
.runAnalysisButton, .advancedAnalysisButton {
transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
will-change: transform;
transform: scale(1);
}
.runAnalysisButton:hover, .advancedAnalysisButton:hover {
transform: scale(1.02);
}
.runAnalysisButton:active, .advancedAnalysisButton:active {
transform: scale(0.96);
transition-duration: 0.1s;
}
.errorBox {
display: flex;
align-items: center;
gap: 10px;
padding: 12px;
border-radius: 8px;
background-color: rgba(255, 0, 0, 0.1);
border: 1px solid rgba(255, 0, 0, 0.2);
color: #ff8787;
backdrop-filter: blur(10px);
margin-bottom: 8px;
}
|