Minor theme refresh and copyright update
This commit is contained in:
parent
35420b2883
commit
49da709bb9
8 changed files with 196 additions and 1257 deletions
90
style.css
Normal file
90
style.css
Normal file
|
@ -0,0 +1,90 @@
|
|||
/* Copyright © 2022-2023 Primrose */
|
||||
/* See the LICENSE file at https://git.snowcake.me/primrose/snowcake-website/src/branch/main/LICENSE for copyright and licensing details */
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: quicksand-light;
|
||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Light.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: quicksand-regular;
|
||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Regular.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: quicksand-medium;
|
||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Medium.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: quicksand-semibold;
|
||||
src: url(https://snowcake.me/assets/fonts/Quicksand-SemiBold.ttf);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: quicksand-bold;
|
||||
src: url(https://snowcake.me/assets/fonts/Quicksand-Bold.ttf);
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: radial-gradient(circle, #ff99cc, #ff99aa, #ffaa99);
|
||||
color: #404040;
|
||||
text-align: center;
|
||||
font-family: quicksand-regular;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #404040;
|
||||
}
|
||||
|
||||
.header {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: auto;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.button {
|
||||
background-color: rgba(255, 255, 255, 0.4);
|
||||
border-radius: 15px;
|
||||
border: 2px solid #ffffff;
|
||||
padding: 10px 10px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 15px;
|
||||
margin: 4px 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
body {
|
||||
background-image: radial-gradient(circle, #8e009f, #6b0077, #470050);
|
||||
color: #ffffff;
|
||||
text-align: center;
|
||||
font-family: quicksand-regular;
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: auto;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.button {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
border-radius: 15px;
|
||||
border: 2px solid #ffffff;
|
||||
padding: 10px 10px;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
font-size: 15px;
|
||||
margin: 4px 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue