diff options
| author | 8cy <[email protected]> | 2020-04-19 06:40:16 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-19 06:40:16 -0700 |
| commit | ed6e347bbcce356bde0cfeba498dab3d39a6c946 (patch) | |
| tree | 419225e81e9a3967ccf6f385a6e1c9c204d0b19c /src/2b2w/index.css | |
| parent | link favi, v7.2.4 (diff) | |
| download | dep-core-test-2b2t.tar.xz dep-core-test-2b2t.zip | |
fix on a rainy day, added most of the supporttest-2b2t
issue, TypeError: Cannot read property 'end' of undefined when trying to stop
Diffstat (limited to 'src/2b2w/index.css')
| -rw-r--r-- | src/2b2w/index.css | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/2b2w/index.css b/src/2b2w/index.css new file mode 100644 index 0000000..6a54055 --- /dev/null +++ b/src/2b2w/index.css @@ -0,0 +1,40 @@ +body { + display: flex; + justify-content: center; + align-items: center; + width: 100vw; + height: 100vh; + margin: 0; + background-color: rgb(16, 16, 26); +} + +h1, .content { + margin: 0; + color: rgb(228, 228, 228); + font-family: sans-serif; +} + +button { + width: 128px; + height: 32px; + background-color: transparent; + border: none; + outline: none; + cursor: pointer; + font-family: sans-serif; + border-radius: 5px; + color: #e4e4e4; + transition-duration: 0.3s; +} + +button.start { + border: 3px solid #25c525; +} + +button.stop { + border: 2px solid #f32727; +} + +.place, .ETA{ + display: inline-block; +} |