| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .animationsContainer {
- display: grid;
- grid-row: 2/-1;
- grid-column: 2/-1;
- margin: 10px 10px;
- height: 100%;
- grid-template-rows: 10vh auto auto 10vh;
- grid-template-columns: repeat(5, 1fr);
- grid-gap: 10px;
- }
- .animationsContainer h2 {
- grid-column: 1/-1;
- grid-row: 1/2;
- color: white;
- font-size: 50px;
- align-self: center;
- text-align: center;
- font-family: 'Raleway', sans-serif;
- }
- .animationsContainer button {
- border: solid #252531 2px;
- border-radius: 10px;
- background-color: #252531;
- color: white;
- font-size: 40px;
- font-family: 'Roboto', sans-serif;
- }
- .animationsContainer button:hover {
- background-color: #2f2f3d;
- }
- .settingsContainer {
- margin: 10px;
- display: grid;
- grid-template-columns: repeat(5, 1fr);
- grid-template-rows: 10vh 10vh 10vh 20vh 20vh 10vh;
- grid-gap: 10px;
- }
- .settingsContainer h2 {
- grid-column: 1/-1;
- grid-row: 1/2;
- color: white;
- font-size: 50px;
- align-self: center;
- text-align: center;
- font-family: 'Raleway', sans-serif;
- }
- .settingUnit p {
- color: white;
- font-family: 'Roboto', sans-serif;
- text-align: center;
- font-size: 28px;
- }
- .settingUnit input {
- display: block;
- margin: auto;
- width: 95%;
- border: none;
- background-color: #47475b;
- color: white;
- height: 30px;
- font-size: 20px;
- font-family: 'Roboto', sans-serif;
- }
- .settingsContainer button {
- border: solid #252531 2px;
- border-radius: 10px;
- background-color: #252531;
- color: white;
- font-size: 30px;
- font-family: 'Roboto', sans-serif;
- }
- .settingsContainer button:hover {
- background-color: #2f2f3d;
- }
- #set {
- grid-row: -2/-1;
- grid-column: -2/-1;
- }
|