skyline/src/components/Cards/NotFound/index.less
Jingwei.Zhang ec59419f4f feat: update color variables
Use color variables to set color in less and jsx, this makes it easy to change the theme for all pages.

Change-Id: I9b82c4624826854d40d11da4e6ce4a9137b86085
2023-05-25 16:44:59 +08:00

42 lines
642 B
Plaintext

@import '~styles/variables';
.wrapper {
margin-top: 100px;
text-align: center;
border-radius: @border-radius;
}
.image {
height: 200px;
user-select: none;
}
.text {
display: inline-block;
width: 600px;
margin-left: 60px;
vertical-align: top;
:global .h1 {
color: @light-color08;
font-size: 120px;
line-height: 1.4;
text-align: left;
opacity: 0.4;
user-select: none;
}
p {
color: @second-title-color;
font-weight: @font-bold;
font-size: 20px;
line-height: 1.4;
text-align: left;
text-shadow: 0 4px 8px rgba(36, 46, 66, 10%);
}
a {
color: @text-color;
}
}