/** * 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; } } }