Compare commits
No commits in common. "02dafb48e663537d577449bb4ea055bb83c4cc3d" and "722225bdc0c220839f784e0dc647f8b4aee5f796" have entirely different histories.
02dafb48e6
...
722225bdc0
|
@ -1,6 +1,20 @@
|
||||||
body {
|
body {
|
||||||
background-color: #000000;
|
--background-color: #000000;
|
||||||
color: #FFFFFF;
|
/* #212121 but 93% transparent and mixed to appear at the same lumonocity*/
|
||||||
|
--secondary-background-color: #242424EE;
|
||||||
|
|
||||||
|
--forground-color: #FFFFFF;
|
||||||
|
--secondary-foreground-color: #FAFAFA;
|
||||||
|
--trinary-foreground-color: #F5F5F5;
|
||||||
|
|
||||||
|
--primary-color: #607D8B;
|
||||||
|
--accent-color: #FF4081;
|
||||||
|
--accent-color-dark: #C51162;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: var(--background-color);
|
||||||
|
color: var(--forground-color);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
|
@ -8,28 +22,20 @@ body {
|
||||||
|
|
||||||
b {
|
b {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #FAFAFA;
|
color: var(--secondary-foreground-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
transition: color 0.14s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
transition: background-color 0.14s cubic-bezier(0.4, 0, 0.2, 1);
|
color: var(--accent-color);
|
||||||
background-color: #FF4081;
|
|
||||||
color: #FAFAFA;
|
|
||||||
padding: 2px 4px;
|
|
||||||
margin: 2px;
|
|
||||||
border-radius: 3px;
|
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
background-color: #C51162;
|
color: var(--accent-color-dark);
|
||||||
}
|
|
||||||
a:visited {
|
|
||||||
color: #F5F5F5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.striken {
|
.striken {
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
color: #F5F5F5;
|
color: var(--trinary-foreground-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
#mainwrapper {
|
#mainwrapper {
|
||||||
|
@ -49,20 +55,14 @@ a:visited {
|
||||||
|
|
||||||
#disc {
|
#disc {
|
||||||
padding: 12px 32px;
|
padding: 12px 32px;
|
||||||
/* #212121 but 93% transparent and mixed to appear at the same lumonocity*/
|
background-color: var(--secondary-background-color);
|
||||||
background-color: rgba(36,36,36,237);
|
|
||||||
}
|
|
||||||
#links {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
font-family: 'Raleway', sans-serif;
|
font-family: 'Raleway', sans-serif;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
color: #FAFAFA;
|
color: var(--secondary-foreground-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue