File size: 421 Bytes
1e92f2d |
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 |
html,
body,
#root {
height: 100%;
width: 100%;
overflow: auto;
}
body {
font-family: system-ui;
margin: 0;
}
*,
*:after,
*:before {
box-sizing: border-box;
}
.flex {
display: flex;
align-items: center;
}
.flex.fill {
height: 100%;
}
.flex.center {
justify-content: center;
}
:root {
--step0: #ff403c;
--step1: #86bfea;
--step2: #f9a033;
--step3: rgb(219, 86, 152);
--step4: #88ff88;
}
|