libregaming-website/static/style.css

54 lines
1.0 KiB
CSS
Raw Normal View History

2023-05-05 21:58:02 +02:00
/* CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
2022-02-03 00:00:08 +01:00
2023-05-05 21:58:02 +02:00
To the extent possible under law, the person who associated CC0
with this work has waived all copyright and related or neighboring
rights to this work.
2022-02-03 00:00:08 +01:00
2023-05-05 21:58:02 +02:00
<http://creativecommons.org/publicdomain/zero/1.0/>
*/
2022-02-03 00:00:08 +01:00
2023-05-05 21:58:02 +02:00
/* Brand colors
LibreGaming Orange: #FF8F23 (for emphasis?)
LibreGaming Blue: #4FBAD5 (for links?)
*/
2022-02-03 00:00:08 +01:00
2023-05-05 21:58:02 +02:00
.text-orange {
2022-02-03 00:00:08 +01:00
color: #ff8f23;
}
2023-05-05 21:58:02 +02:00
.text-blue {
color: #4fbad5;
2022-02-03 00:00:08 +01:00
}
2023-05-05 21:58:02 +02:00
html { /* center HTML and reduce width */
background-color: black;
margin: auto;
2023-07-01 16:22:58 +02:00
max-width: 75em;
2022-02-03 00:00:08 +01:00
}
2023-05-05 21:58:02 +02:00
body { /* establish document colors and font */
background-color: #1c1b22; /* dark grey background */
color: #dee2e6; /* off white text */
font-family: Roboto, Arial, sans-serif;
padding: 1em;
2022-02-03 00:00:08 +01:00
}
2023-05-05 21:58:02 +02:00
strong {
color: #ff8f23;
2022-02-03 00:00:08 +01:00
}
2023-05-05 21:58:02 +02:00
/* fit images to document */
2022-02-03 00:00:08 +01:00
2023-05-05 21:58:02 +02:00
img {
height: auto;
2022-02-03 00:00:08 +01:00
max-width: 100%;
}
2023-05-05 21:58:02 +02:00
/* branded styling for links */
2022-02-03 00:37:48 +01:00
2023-05-05 21:58:02 +02:00
a {color: #4fbad5;}
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover {text-decoration: underline;}
a:active {text-decoration: underline;}