Dark theme

master
Bob Mottram 2019-08-10 19:28:24 +01:00
parent b5a82cd4d0
commit ba3f3bb220
1 changed files with 34 additions and 4 deletions

View File

@ -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 {
background-color: var(--main-bg-color);
color: var(--main-fg-color);
height: 100%;
font-family: Arial, Helvetica, sans-serif;
max-width: 80%;
@ -6,6 +22,20 @@ body, html {
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 {
background-image: url("follow-background.png");
height: 100%;
@ -13,7 +43,7 @@ body, html {
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-color: white;
background-color: var(--main-bg-color);
}
.followAvatar {
@ -27,7 +57,7 @@ body, html {
}
.followText {
font-size: 24px;
font-size: var(--font-size);
}
.button {
@ -36,7 +66,7 @@ body, html {
border: none;
color: white;
text-align: center;
font-size: 24px;
font-size: var(--font-size);
padding: 10px;
width: 20%;
max-width: 200px;
@ -72,5 +102,5 @@ input[type=text] {
}
.cwText {
display: none;
display: none;
}