mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
59 lines
936 B
SCSS
59 lines
936 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.Welcome {
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
|
|
h2 {
|
|
color: var(--textColorAccent);
|
|
font-weight: 600;
|
|
margin-top: 15px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
ul {
|
|
margin-top: 20px;
|
|
|
|
li {
|
|
text-align: left;
|
|
line-height: 1.5;
|
|
background-color: var(--layoutBackground);
|
|
padding: 7px;
|
|
border-radius: 4px;
|
|
margin-bottom: 7px;
|
|
cursor: pointer;
|
|
|
|
a {
|
|
margin-left: 10px;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
li:hover {
|
|
color: var(--textColorAccent);
|
|
}
|
|
}
|
|
|
|
.Icon.logo {
|
|
width: 200px;
|
|
height: 200px;
|
|
color: var(--primary);
|
|
}
|
|
|
|
a.link {
|
|
color: var(--colorInfo);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|