color
Gitea Actions Requirements / Explore-Gitea-Actions (push) Waiting to run
Details
Gitea Actions Requirements / Explore-Gitea-Actions (push) Waiting to run
Details
This commit is contained in:
parent
e617d8ddfc
commit
5070a647fe
|
@ -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 |
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue