Spaces:
Sleeping
Sleeping
File size: 1,111 Bytes
e1d1ce0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | /* Global Application Styles */
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
background-color: #f5f5f5;
color: #333;
}
#root {
margin: 0;
padding: 0;
}
.app {
display: flex;
justify-content: center;
align-items: stretch;
height: 100vh;
overflow: hidden;
background-color: #f5f5f5;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: 600;
}
p {
margin: 0;
}
/* Buttons */
button {
font-family: inherit;
}
/* Forms */
input,
textarea,
select {
font-family: inherit;
font-size: 14px;
}
/* Utility Classes */
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
/* Responsive Design */
@media (max-width: 768px) {
body {
font-size: 14px;
}
h1 {
font-size: 20px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
}
|