21 lines
442 B
CSS
21 lines
442 B
CSS
.logoText {
|
|
width: 180px;
|
|
height: 25px;
|
|
margin: 40px;
|
|
}
|
|
|
|
#background {
|
|
position: fixed;
|
|
overflow: hidden;
|
|
z-index: 0;
|
|
top: 0px;
|
|
left: 0px;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
background: var(--wine-darkest);
|
|
background: linear-gradient(180deg, var(--wine-darkest) 0%, var(--wine-dark) 100%);
|
|
color: var(--foreground);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|