airboardgame/src/index.css

61 lines
1.1 KiB
CSS
Raw Normal View History

2020-10-24 20:33:12 +02:00
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;500;700;800&display=block");
2020-10-18 22:15:38 +02:00
body {
margin: 0;
2020-06-27 18:58:12 +02:00
padding: 0;
}
2020-10-16 14:52:48 +02:00
:root {
--bg-color: #2a2a2aff;
2020-10-24 20:33:12 +02:00
--bg-secondary-color: #404040ff;
2020-10-16 14:52:48 +02:00
--font-color: #f9fbfaff;
2020-10-18 22:15:38 +02:00
--color-darkGrey: #2a2a2aff;
--color-lightGrey: #888886ff;
2020-10-16 14:52:48 +02:00
--color-grey: #404040ff;
--color-primary: #db5034ff;
2020-10-17 22:23:43 +02:00
--color-secondary: #00a698ff;
2020-10-16 14:52:48 +02:00
--color-error: #d43939;
--color-success: #28bd14;
--grid-maxWidth: 120rem;
--grid-gutter: 2rem;
--font-size: 1.6rem;
--font-family-sans: sans-serif;
--font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
2020-10-18 22:15:38 +02:00
2020-10-24 20:33:12 +02:00
.button,
[type="button"],
[type="reset"],
[type="submit"],
button {
padding: 1rem 2.5rem;
color: var(--font-color);
2020-10-24 21:25:36 +02:00
background: var(--color-lightGrey);
2020-10-18 22:15:38 +02:00
}
2020-10-24 20:33:12 +02:00
.button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover,
button:hover {
filter: brightness(125%);
opacity: 1;
}
a:hover:not(.button) {
filter: brightness(125%);
opacity: 1;
}
2020-10-18 22:15:38 +02:00
2020-10-24 20:33:12 +02:00
h1,
h2,
h3,
h4,
h5 {
2020-10-18 22:15:38 +02:00
font-family: "Merriweather Sans", sans-serif;
2020-10-24 20:33:12 +02:00
}
.tabs a {
color: var(--font-color);
}