19 lines
271 B
SCSS
19 lines
271 B
SCSS
.welcome {
|
|
left: 50%;
|
|
position: absolute;
|
|
text-align: center;
|
|
top: 40%;
|
|
transform: translate(-50%, -50%);
|
|
white-space: nowrap;
|
|
|
|
div {
|
|
a {
|
|
color: $color-text;
|
|
padding: 0 .5em;
|
|
|
|
&:visited {
|
|
color: $color-text;
|
|
}
|
|
}
|
|
}
|
|
} |