servicepoint-tanks/tank-frontend/src/index.css

38 lines
616 B
CSS
Raw Normal View History

2024-04-14 00:49:39 +02:00
@font-face {
font-family: 'CCCBFont';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/CCCBFont.ttf') format('ttf'), url('/CCCBFont.woff') format('woff');
}
2024-04-14 11:16:34 +02:00
* {
box-sizing: border-box;
font-family: CCCBFont, monospace;
text-transform: uppercase;
}
html, body {
height: 100%;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
2024-04-13 14:14:50 +02:00
background-color: black;
2024-04-13 23:07:08 +02:00
color: white;
}
#root {
display: flex;
2024-04-13 23:07:08 +02:00
flex-direction: row;
align-items: center;
2024-04-13 23:53:09 +02:00
width: 95vw;
height: 95vh;
2024-04-13 23:07:08 +02:00
}
.grow {
flex-grow: 1;
}