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>
|
</div>
|
||||||
<div class="main" v-else>
|
<div class="main" v-else>
|
||||||
<img class="logo-img" src="./assets/logo.png" />
|
<img class="logo-img" src="./assets/logo_color.png" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
Binary file not shown.
After Width: | Height: | Size: 265 KiB |
|
@ -1,10 +1,9 @@
|
||||||
@import '../../node_modules/reset-css/sass/reset';
|
@import '../../node_modules/reset-css/sass/reset';
|
||||||
|
|
||||||
|
$blackColor: #181818;
|
||||||
$accentColor: #ef570c;
|
$accentColor: #ef570c;
|
||||||
|
$redColor: #f83300;
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: 'main';
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'logo';
|
font-family: 'logo';
|
||||||
|
@ -16,6 +15,12 @@ body {
|
||||||
src: url('../fonts/main.otf');
|
src: url('../fonts/main.otf');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'main';
|
||||||
|
background: $blackColor;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 16rem 1fr;
|
grid-template-columns: 16rem 1fr;
|
||||||
|
@ -97,9 +102,9 @@ body {
|
||||||
font-family: 'logo';
|
font-family: 'logo';
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
|
|
||||||
background: linear-gradient(45deg, black, #ff3600);
|
background: linear-gradient(45deg, $redColor, $accentColor);
|
||||||
-webkit-background-clip: text;
|
background-clip: text;
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-img {
|
&-img {
|
||||||
|
|
Loading…
Reference in New Issue