owlboard-svelte/src/lib/main.css

68 lines
2.0 KiB
CSS
Raw Normal View History

2023-06-12 21:50:47 +01:00
/* FONTS */
@font-face {
2023-07-07 11:27:28 +01:00
font-family: 'firamono';
2023-07-07 11:29:33 +01:00
src: url('/font/firamono/firamono-regular.woff2') format('woff2'), url('/font/firamono/firamono-regular.woff') format('woff'),
2023-07-07 11:27:28 +01:00
url('/font/firamono/firamono-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'firamono';
2023-07-07 11:29:33 +01:00
src: url('/font/firamono/firamono-500.woff2') format('woff2'), url('/font/firamono/firamono-500.woff') format('woff'), url('/font/firamono/firamono-500.ttf') format('truetype');
2023-07-07 11:27:28 +01:00
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'urwgothic';
2023-07-07 11:29:33 +01:00
src: url('/font/urwgothic/urwgothic.woff2') format('woff2'), url('/font/urwgothic/urwgothic.woff') format('woff'), url('/font/urwgothic/urwgothic.ttf') format('truetype');
2023-07-07 11:27:28 +01:00
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'urwgothic';
2023-07-07 11:29:33 +01:00
src: url('/font/urwgothic/urwgothicDemi.woff2') format('woff2'), url('/font/urwgothic/urwgothicDemi.woff') format('woff'),
2023-07-07 11:27:28 +01:00
url('/font/urwgothic/urwgothicDemi.ttf') format('truetype');
font-weight: 900;
font-style: normal;
}
2023-06-12 21:50:47 +01:00
@font-face {
font-family: 'ubuntu';
2023-07-12 21:00:28 +01:00
src: url('/font/ubuntumono/ubuntumono-regular.woff2') format('woff2'), url('/font/ubuntumono/ubuntumono-regular.woff') format('woff'),
url('/font/ubuntumono/ubuntumono-regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
2023-07-07 11:27:28 +01:00
html {
width: 100%;
height: 100%;
}
2023-06-12 21:50:47 +01:00
2023-07-07 11:27:28 +01:00
body {
background-color: var(--main-bg-color);
2023-07-07 11:29:33 +01:00
background-image: radial-gradient(var(--second-bg-color), var(--main-bg-color));
2023-10-06 12:47:18 +01:00
color: var(--main-text-color);
2023-07-07 11:27:28 +01:00
font-family: urwgothic, sans-serif;
text-align: center;
margin: auto;
width: 100%;
padding-bottom: 65px;
2023-07-07 11:27:28 +01:00
}
a {
2023-10-06 12:47:18 +01:00
color: var(--main-link-color);
2023-07-07 11:27:28 +01:00
}
button:hover {
cursor: pointer;
}
button {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
}