Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.

30 lines
509 B
CSS
Raw Normal View History

2020-02-04 13:27:46 -06:00
html,
body,
#root,
.center-container {
2020-02-04 13:27:46 -06:00
height: 100%;
width: 100%;
}
body {
background: #272727;
2020-02-04 18:16:45 -06:00
color: #f4f4f4;
2020-02-04 13:27:46 -06:00
margin: 0;
2020-02-18 19:06:35 -05:00
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol";
2020-02-04 13:27:46 -06:00
overflow: hidden;
}
2020-02-04 18:16:45 -06:00
button {
font-family: inherit;
2020-02-14 15:57:51 -06:00
font-size: inherit;
2020-02-04 18:16:45 -06:00
}
2020-02-05 13:25:44 -06:00
.center-container {
2020-02-05 13:25:44 -06:00
align-items: center;
box-sizing: border-box;
display: flex;
justify-content: center;
padding: 20px;
2020-02-05 13:25:44 -06:00
}