AspireExplorer/assets/css/_not-found.scss
Namith Jawahar b6e7368592
Themes Support (#18)
Themes Support
2025-06-12 21:25:39 +05:30

36 lines
724 B
SCSS

.no-plugin-card,
.no-theme-card {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
#not-found {
width: 600px;
height: 400px;
background: #111;
position: relative;
overflow: hidden;
border: 2px solid #444;
&::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
background-size: var(--block-size) var(--block-size);
pointer-events: none;
z-index: 0;
}
}
.block {
position: absolute;
background: #4caf50;
border-radius: 4px;
z-index: 1;
opacity: 0;
}
}