old-website/stylesheet.css

138 lines
2 KiB
CSS
Raw Normal View History

2022-06-15 22:58:50 +00:00
@import "css/nav.css";
@import "css/main.css";
@import "css/footer.css";
/*
2022-06-15 22:58:50 +00:00
@font-face {
font-family: "Rubik", sans-serif;
src: url(fonts/Rubik.ttf) format('truetype');
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
@font-face {
font-family: "Lexend Deca", sans-serif;
src: url(fonts/LexendDeca.ttf) format('truetype');
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
@font-face {
2022-05-14 23:20:33 +00:00
font-family: 'Fira Code', monospace;
src: url(fonts/FiraCode.ttf) format('truetype');
2022-05-14 23:20:33 +00:00
}
*/
2022-05-14 23:20:33 +00:00
2022-06-15 22:58:50 +00:00
:root {
--bg: #151515;
2022-06-17 13:24:35 +00:00
--bg-dark: #0f0f0f;
2022-06-15 22:58:50 +00:00
--bg-alt: #E8E3E3;
2022-05-14 23:20:33 +00:00
2022-06-15 22:58:50 +00:00
--h: #8C977D;
--fg:#E8E3E3;
--fg-dark: #151515;
2022-05-14 23:20:33 +00:00
2022-06-15 22:58:50 +00:00
--shadow: 6px 6px 10px #15151588;
--rad: 15px;
--orange: #FF7700;
--orange-alt: #E0863E;
--green: #8C977D;
/* refsheet colours */
--bandana-0: #FF7700;
--bandana-1: #FFDC00;
--bandana-2: #00D621;
--bandana-3: #0088FF;
--fur-0: #FF851B;
--fur-1: #FFF3BB;
--fur-2: #613700;
--beans: #FEBBEC;
--eye: #C859C9;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
* {
font-weight: 400;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
html {
margin: 0; padding: 0;
background-color: #817670;
2022-06-15 22:58:50 +00:00
background-image: url("images/bg-alt.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
body {
margin: 0 auto; padding: 1rem;
max-width: 969px; width: auto; min-width: none;
background-color: var(--bg-alt);
background: none;
2022-05-14 23:20:33 +00:00
}
p,a {
font-family: "Fira Code", monospace;
}
2022-06-15 22:58:50 +00:00
h1,h2,h3 {
font-family: "Lexend Deca", sans-serif;
font-weight: 600;
color: var(--h);
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
h1 {
font-size: 40px;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
h2 {
font-size: 30px;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
h3 {
font-size: 23px;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
a {
color: var(--green);
text-decoration: none;
font-weight: bold;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
a:hover {
color: var(--orange);
font-weight: bolder;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
a:focus {
color: var(--orange);
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
a:active {
color: var(--orange-alt);
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
a:visited {
text-decoration: underline;
2022-05-14 23:20:33 +00:00
}
span {
display: inline;
}
.carty-colour {
2022-06-15 22:58:50 +00:00
color: #C29356;
font-weight: bold;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
.jeetix-colour {
2022-06-15 22:58:50 +00:00
color: cadetblue;
font-weight: bold;
2022-05-14 23:20:33 +00:00
}
2022-06-15 22:58:50 +00:00
.fluffy-colour {
color: #FF851B;
2022-06-15 22:58:50 +00:00
font-weight: bold;
2022-05-14 23:20:33 +00:00
}
2022-06-17 13:24:35 +00:00
.mrhdash-colour {
color: #a58fb6;
font-weight: bold;
}
.zadok-colour {
color: #542b00;
font-weight: bold;
}