mirror of https://gitlab.com/bashrc2/epicyon
Dark theme
parent
b5a82cd4d0
commit
ba3f3bb220
|
@ -1,4 +1,20 @@
|
||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--main-bg-color: #282c37;
|
||||||
|
--main-fg-color: #9baec8;
|
||||||
|
--main-link-color: #2980d9;
|
||||||
|
--main-visited-color: #1580d9;
|
||||||
|
--border-color: #505050;
|
||||||
|
--font-size-header: 18px;
|
||||||
|
--font-color-header: #ccc;
|
||||||
|
--font-size: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
body, html {
|
body, html {
|
||||||
|
background-color: var(--main-bg-color);
|
||||||
|
color: var(--main-fg-color);
|
||||||
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
max-width: 80%;
|
max-width: 80%;
|
||||||
|
@ -6,6 +22,20 @@ body, html {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a, u {
|
||||||
|
color: var(--main-fg-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited{
|
||||||
|
color: var(--main-visited-color);
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
color: var(--main-link-color);
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
.follow {
|
.follow {
|
||||||
background-image: url("follow-background.png");
|
background-image: url("follow-background.png");
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -13,7 +43,7 @@ body, html {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
position: relative;
|
position: relative;
|
||||||
background-color: white;
|
background-color: var(--main-bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.followAvatar {
|
.followAvatar {
|
||||||
|
@ -27,7 +57,7 @@ body, html {
|
||||||
}
|
}
|
||||||
|
|
||||||
.followText {
|
.followText {
|
||||||
font-size: 24px;
|
font-size: var(--font-size);
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
|
@ -36,7 +66,7 @@ body, html {
|
||||||
border: none;
|
border: none;
|
||||||
color: white;
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 24px;
|
font-size: var(--font-size);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
max-width: 200px;
|
max-width: 200px;
|
||||||
|
|
Loading…
Reference in New Issue