Files
mern-template/client/src/styles/index.css
2024-12-14 16:14:14 +02:00

64 lines
1.2 KiB
CSS

:root {
--online: #44b700;
--offline: #b74400;
}
body {
margin: 0;
font-size: 16px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
.App {
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.header {
width: 100% !important;
padding: 0 1rem !important;
background-color: whitesmoke !important;
color: black !important;
display: flex !important;
flex-direction: row !important;
align-items: center !important;
justify-content: space-between !important;
}
.error {
margin: 0.5rem;
color: red;
text-align: center;
}
/*
Extra Small Devices, Phones
@media only screen and (min-width: 480px) {}
*/
/*
Small Devices, Tablets
@media only screen and (min-width: 768px) {}
*/
/*
Medium Devices, Desktops
@media only screen and (min-width: 992px) {}
*/
/*
Large Devices, Wide Screens
@media only screen and (min-width: 1200px) {}
*/