epicyon/epicyon-suspended.css

100 lines
2.0 KiB
CSS
Raw Normal View History

2019-08-13 10:04:18 +00:00
@charset "UTF-8";
:root {
--main-bg-color: #282c37;
2020-05-28 13:27:25 +00:00
--link-bg-color: #282c37;
2019-08-13 10:04:18 +00:00
--main-bg-color-darker: #232c37;
--main-bg-color-report: #221c27;
--main-header-color-roles: #282237;
--main-fg-color: #dddddd;
--main-link-color: #999;
--main-visited-color: #888;
--border-color: #505050;
--font-size-header: 18px;
--font-color-header: #ccc;
--font-size: 22px;
--text-entry-foreground: #ccc;
--text-entry-background: #111;
2019-09-11 20:29:47 +00:00
--time-color: #aaa;
--button-text: #FFFFFF;
--button-background: #999;
--button-selected: #666;
2020-08-14 20:14:26 +00:00
--focus-color: white;
2020-11-24 18:00:29 +00:00
--main-link-color-hover: #bbb;
2021-02-18 13:23:33 +00:00
--rendering: normal;
2019-08-13 10:04:18 +00:00
}
2020-09-14 14:00:49 +00:00
@font-face {
font-family: 'Bedstead';
font-style: italic;
font-weight: normal;
font-display: block;
src: url('./fonts/bedstead.otf') format('opentype');
}
2020-05-25 11:33:37 +00:00
@font-face {
font-family: 'Bedstead';
font-style: normal;
font-weight: normal;
2020-07-12 19:36:29 +00:00
font-display: block;
2020-05-25 11:33:37 +00:00
src: url('./fonts/bedstead.otf') format('opentype');
}
2019-08-13 10:04:18 +00:00
body, html {
background-color: var(--main-bg-color);
color: var(--main-fg-color);
height: 100%;
font-family: Arial, Helvetica, sans-serif;
max-width: 80%;
min-width: 600px;
margin: 0 auto;
font-size: var(--font-size);
2021-02-18 13:23:33 +00:00
image-rendering: var(--rendering);
2019-08-13 10:04:18 +00:00
}
a, u {
color: var(--main-fg-color);
}
a:visited{
color: var(--main-visited-color);
2020-05-28 13:27:25 +00:00
background: var(--link-bg-color);
2020-11-24 18:00:29 +00:00
font-weight: normal;
2020-11-24 20:02:15 +00:00
text-decoration: none;
2019-08-13 10:04:18 +00:00
}
a:link {
color: var(--main-link-color);
2020-05-28 13:27:25 +00:00
background: var(--link-bg-color);
2020-11-24 18:00:29 +00:00
font-weight: normal;
2020-11-24 20:02:15 +00:00
text-decoration: none;
2020-11-24 18:00:29 +00:00
}
a:link:hover {
color: var(--main-link-color-hover);
}
a:visited:hover {
color: var(--main-link-color-hover);
2019-08-13 10:04:18 +00:00
}
2020-08-14 20:14:26 +00:00
a:focus {
border: 2px solid var(--focus-color);
}
2019-08-13 10:04:18 +00:00
.screentitle {
font-size: 30px;
2020-05-25 12:28:06 +00:00
font-family: Arial, Helvetica, sans-serif;
2019-08-13 10:04:18 +00:00
}
div {
height: 300px;
width: 400px;
background: var(--main-bg-color);
position: fixed;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -200px;
}