Files
dc-recorder/frontend/src/styles.css

31 lines
503 B
CSS
Raw Normal View History

2026-05-14 20:24:41 +07:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
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;
background-color: #1e1e1e;
color: #e0e0e0;
}
.app {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
h1 {
margin-bottom: 1rem;
color: #ffffff;
}
p {
color: #b0b0b0;
}