| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- *{margin:0;padding:0;}
- body{
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 100vh;
- }
- #title{
- display: flex;
- justify-content: center;
- width: 100%;
- }
- #centerTitle{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- #searchButton{
- width: 100px;
- height: 35px;
- margin-top: 10px;
- }
- #selectors{
- display: flex;
- flex-direction: column;
- position: fixed;
- top: 10px;
- right: 50px;
- z-index: 10;
- }
- #chart{
- flex-basis: 100px;
- flex-grow: 10;
- width: 90vw;
- height: 75vh;
- }
|