Created
April 7, 2021 03:58
-
-
Save fisherds/58f261ccfd8ae6c8aaf4cec287ddeab7 to your computer and use it in GitHub Desktop.
Additional CSS for the Node Tank Drive Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .page-container { | |
| margin-top: 75px; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| #sliderContainer { | |
| margin: 10px; | |
| width: 300px; | |
| } | |
| #sliderContainer input { | |
| width: 100%; | |
| } | |
| #driveGrid .driveButton { | |
| background-color: #80000080; | |
| color: white; | |
| margin: 0; | |
| padding: 0; | |
| font-size: 35px; | |
| font-weight: 500; | |
| } | |
| #driveGrid { | |
| height: 300px; | |
| width: 300px; | |
| display: grid; | |
| gap: 10px; | |
| grid-template-columns: repeat(3, 1fr); | |
| } | |
| #spinButtons { | |
| margin-top: 40px | |
| } | |
| #spinButtons .driveButton { | |
| padding-top: 20%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment