dumi
Version:
📖 Documentation Generator of React Component
36 lines (29 loc) • 622 B
text/less
@import (reference) '../../styles/variables.less';
.@{prefix}-not-found {
display: flex;
flex-direction: column;
height: 65vh;
align-items: center;
justify-content: center;
> h1 {
position: relative;
margin: 24px 0;
color: @c-border-light;
font-size: 78px;
font-weight: 700;
text-shadow: -1px -1px 0 @c-border;
@{dark-selector} & {
color: @c-border-less-dark;
text-shadow: -1px -1px 0 @c-border-dark;
}
}
> a {
color: @c-primary;
@{dark-selector} & {
color: @c-primary-dark;
}
&:not(:hover) {
text-decoration: none;
}
}
}