color
Gitea Actions Requirements / Explore-Gitea-Actions (push) Waiting to run Details

This commit is contained in:
Kseninia Mikhaylova 2024-04-27 11:31:38 +03:00
parent e617d8ddfc
commit 5070a647fe
3 changed files with 12 additions and 7 deletions

View File

@ -48,7 +48,7 @@ onMounted(async () => {
</div>
</div>
<div class="main" v-else>
<img class="logo-img" src="./assets/logo.png" />
<img class="logo-img" src="./assets/logo_color.png" />
</div>
</div>
</template>

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 KiB

View File

@ -1,10 +1,9 @@
@import '../../node_modules/reset-css/sass/reset';
$blackColor: #181818;
$accentColor: #ef570c;
$redColor: #f83300;
body {
font-family: 'main';
}
@font-face {
font-family: 'logo';
@ -16,6 +15,12 @@ body {
src: url('../fonts/main.otf');
}
body {
font-family: 'main';
background: $blackColor;
color: #fff;
}
.container {
display: grid;
grid-template-columns: 16rem 1fr;
@ -97,9 +102,9 @@ body {
font-family: 'logo';
font-size: 4rem;
background: linear-gradient(45deg, black, #ff3600);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background: linear-gradient(45deg, $redColor, $accentColor);
background-clip: text;
-webkit-text-fill-color: transparent;
}
&-img {