mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireExplorer.git
synced 2026-07-17 10:16:32 +08:00
36 lines
724 B
SCSS
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;
|
|
}
|
|
}
|