mirror of
https://github.com/Kugelschieber/marvinblum.git
synced 2026-01-18 14:50:27 +00:00
Switched to Shifu.
This commit is contained in:
230
_old/assets/style.css
Normal file
230
_old/assets/style.css
Normal file
@@ -0,0 +1,230 @@
|
||||
:root {
|
||||
--dark-gray: #212121;
|
||||
--light-gray: #808080;
|
||||
--lighter-gray: rgb(238, 238, 238);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DM Sans";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url("/assets/font/DMSans-Regular.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DM Sans";
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url("/assets/font/DMSans-Italic.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DM Sans";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url("/assets/font/DMSans-Bold.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "DM Sans";
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
font-display: 700;
|
||||
src: url("/assets/font/DMSans-BoldItalic.ttf");
|
||||
}
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: "DM Sans", sans-serif;
|
||||
color: var(--dark-gray);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 60px;
|
||||
line-height: 78px;
|
||||
font-weight: bold;
|
||||
margin: 0 0 32px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-weight: bold;
|
||||
font-size: 32px;
|
||||
line-height: 42px;
|
||||
margin: 0 0 16px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
h2.name {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
font-weight: normal;
|
||||
margin: 0 0 16px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
margin: 0 0 28px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: circle;
|
||||
margin: 0 0 28px 0;
|
||||
padding: 0 0 0 32px;
|
||||
}
|
||||
|
||||
li {
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
pre, code {
|
||||
font-family: monospace;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
background: var(--lighter-gray);
|
||||
padding: 2px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0 0 28px 0;
|
||||
padding: 24px;
|
||||
border-radius: 8px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
button, .button {
|
||||
width: 192px;
|
||||
height: 54px;
|
||||
color: #fff;
|
||||
font-weight: bold;
|
||||
font-size: 22px;
|
||||
line-height: 29px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background: var(--dark-gray);
|
||||
border-width: 0;
|
||||
border-radius: 8px;
|
||||
margin: 64px 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
transition: opacity 0.1s linear;
|
||||
}
|
||||
|
||||
button:hover, .button:hover {
|
||||
color: #fff;
|
||||
opacity: 0.9;
|
||||
transition: opacity 0.1s linear;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: var(--dark-gray);
|
||||
transition: color 0.1s linear;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--light-gray);
|
||||
transition: color 0.1s linear;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
color: var(--light-gray);
|
||||
}
|
||||
|
||||
article a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.content {
|
||||
max-width: 640px;
|
||||
margin: 128px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
max-width: 540px;
|
||||
border-width: 1px 0 0 0;
|
||||
border-style: solid;
|
||||
border-color: var(--light-gray);
|
||||
margin: 64px 0 0 0;
|
||||
padding: 32px 0 0 0;
|
||||
}
|
||||
|
||||
.footer p {
|
||||
margin: 0 0 18px 0;
|
||||
}
|
||||
|
||||
.footer-icons {
|
||||
display: inline-grid;
|
||||
gap: 16px;
|
||||
grid-auto-flow: column;
|
||||
margin: 0 0 32px 0;
|
||||
}
|
||||
|
||||
.footer-icons img {
|
||||
transition: opacity 0.1s linear;
|
||||
}
|
||||
|
||||
.footer-icons img:hover {
|
||||
opacity: 0.9;
|
||||
transition: opacity 0.1s linear;
|
||||
}
|
||||
|
||||
.back-to-homepage {
|
||||
display: inline-flex;
|
||||
gap: 8px;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
color: var(--light-gray);
|
||||
margin: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.back-to-homepage:hover {
|
||||
color: var(--dark-gray);
|
||||
}
|
||||
|
||||
.back-to-homepage img {
|
||||
width: 8px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.cv {
|
||||
display: flex;
|
||||
gap: 32px;
|
||||
margin: 0 0 16px 0;
|
||||
}
|
||||
|
||||
.cv div:first-child {
|
||||
width: 128px;
|
||||
color: var(--light-gray);
|
||||
}
|
||||
|
||||
.fullpage-img {
|
||||
position: fixed;
|
||||
right: 0;
|
||||
left: 896px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.date {
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
color: var(--light-gray);
|
||||
margin: 0 0 24px 0;
|
||||
}
|
||||
Reference in New Issue
Block a user