Files
TechRadarAJR/styles/base.css
Philip Feldmann 6c5b0ad326 Implemented feedback of tester
Fixed categories and slightly darkened the markdown color to increase
readability
2017-04-06 11:06:43 +02:00

53 lines
999 B
CSS

:root {
--color-gray-dark: #475157;
--color-gray-dark-alt: #4F585E;
--color-gray-dark-alt2: #434D53;
--color-gray-normal: #7f858a;
--color-gray-light: #7D878D;
--color-white: #fff;
--color-green: #5CB449;
--color-orange: #FAA03D;
--color-blue: #40A7D1;
--color-marine: #688190;
--color-red: #F1235A;
--color-brand: #F59134;
}
@custom-media --until-sm (max-width: 30em);
@custom-media --until-md (max-width: 48em);
@custom-media --until-lg (max-width: 61.875em);
@custom-media --until-xl (max-width: 75em);
@font-face {
font-family: 'DIN';
src: url('../fonts/clanot-news.otf');
font-weight: normal;
}
@font-face {
font-family: 'DIN';
src: url('../fonts/clanot-thin.otf');
font-weight: 300;
}
body {
background: var(--color-gray-dark);
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'DIN';
font-weight: normal;
font-size: 14px;
line-height: 1.5;
& h1 {
color: blue;
}
}
#root {
min-height: 100vh;
overflow: hidden;
}