make-web/src/assets/style.css

70 lines
1.1 KiB
CSS
Raw Normal View History

2023-10-23 22:39:52 +02:00
@font-face {
2023-10-24 08:08:46 +02:00
font-family: 'bungee shade regular';
src: url('/assets/BungeeShade-Regular.ttf');
}
@font-face {
font-family: 'fira sans regular';
src: url('/assets/FiraSans-Regular.ttf');
}
@font-face {
font-family: 'fira sans bold';
src: url('/assets/FiraSans-Bold.ttf');
}
@font-face {
font-family: 'fira mono regular';
src: url('/assets/FiraMono-Regular.ttf');
}
body {
font-family: fira sans regular;
2023-10-23 13:19:55 +02:00
}
2023-10-24 08:08:46 +02:00
h1, h2, h3, h4, h5, h6, b {
font-family: fira sans bold;
}
code, pre {
font-family: fira mono regular;
}
2023-11-08 14:01:50 +01:00
pre {
overflow: scroll;
}
2023-10-24 08:08:46 +02:00
a {
text-decoration: none;
}
.header-title a {
2023-10-23 22:39:52 +02:00
text-decoration: none;
font-size: 2rem;
2023-10-24 08:08:46 +02:00
font-weight: 400;
font-family: bungee shade regular;
2023-10-23 13:19:55 +02:00
}
2023-10-23 22:39:52 +02:00
.header-title a {
color: black;
2023-10-23 13:19:55 +02:00
}
2023-10-23 22:39:52 +02:00
.header-row {
margin-top: 10px;
margin-bottom: 2px;
2023-10-24 08:08:46 +02:00
font-family: fira sans bold;
2023-10-23 13:19:55 +02:00
}
2023-10-23 22:39:52 +02:00
.header-item {
color: black;
text-decoration: none;
margin-right: 0,5rem;
2023-10-23 13:19:55 +02:00
}
2023-10-23 22:39:52 +02:00
.header-line {
width: 100%;
border-width: 2px;
border-color: black;
border-style: solid none none none;
2023-10-23 13:19:55 +02:00
}
2023-11-02 11:41:46 +01:00
.monospace {
letter-spacing: 1px;
}