Compare commits
3 Commits
722225bdc0
...
02dafb48e6
Author | SHA1 | Date |
---|---|---|
Derek | 02dafb48e6 | |
Derek | d522973372 | |
Derek | 99f70646e5 |
|
@ -1,20 +1,6 @@
|
||||||
body {
|
body {
|
||||||
--background-color: #000000;
|
background-color: #000000;
|
||||||
/* #212121 but 93% transparent and mixed to appear at the same lumonocity*/
|
color: #FFFFFF;
|
||||||
--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;
|
||||||
|
@ -22,20 +8,28 @@ body {
|
||||||
|
|
||||||
b {
|
b {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--secondary-foreground-color);
|
color: #FAFAFA;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
transition: color 0.14s cubic-bezier(0.4, 0, 0.2, 1);
|
text-decoration: none;
|
||||||
color: var(--accent-color);
|
transition: background-color 0.14s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
|
background-color: #FF4081;
|
||||||
|
color: #FAFAFA;
|
||||||
|
padding: 2px 4px;
|
||||||
|
margin: 2px;
|
||||||
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
color: var(--accent-color-dark);
|
background-color: #C51162;
|
||||||
|
}
|
||||||
|
a:visited {
|
||||||
|
color: #F5F5F5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.striken {
|
.striken {
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
color: var(--trinary-foreground-color);
|
color: #F5F5F5;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mainwrapper {
|
#mainwrapper {
|
||||||
|
@ -55,14 +49,20 @@ a:hover {
|
||||||
|
|
||||||
#disc {
|
#disc {
|
||||||
padding: 12px 32px;
|
padding: 12px 32px;
|
||||||
background-color: var(--secondary-background-color);
|
/* #212121 but 93% transparent and mixed to appear at the same lumonocity*/
|
||||||
|
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: var(--secondary-foreground-color);
|
color: #FAFAFA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue