aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
authorMayteApolix <83069108+MayteApolix@users.noreply.github.com> 2022-01-06 15:56:43 +0100
committerMayteApolix <83069108+MayteApolix@users.noreply.github.com> 2022-01-06 15:56:43 +0100
commit9b44d77b2a8a4b8b2e80a0e997f923dad6f79e24 (patch)
tree01079a84a10936182d40683eb6612e69acebabc1 /src/style.css
parent8e211d967a8b384ae482aafd9e0280ac943c6f8b (diff)
Used boilerplate code to restructure project, edited splash.html and added routing functionality
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css99
1 files changed, 0 insertions, 99 deletions
diff --git a/src/style.css b/src/style.css
deleted file mode 100644
index 2c15d2f..0000000
--- a/src/style.css
+++ /dev/null
@@ -1,99 +0,0 @@
-:root {
- --light-blue: #B3E0F2;
- --dark-blue: #204C6D;
-}
-
-.container {
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
-
- /* Take up half of the screen */
- position: absolute;
- height: 100%;
- width: 50%;
-
- /* Center all child elements */
- display: flex;
- align-items: center;
-}
-
-.left {
- justify-content: center;
-}
-
-.right {
- /* Take up the right side of the screen */
- margin-left: 50%;
- flex-direction: column;
-}
-
-#outer-board {
- border: 8px black solid;
- border-spacing: 8px;
- height: 80%;
-}
-
-#board {
- border-collapse: collapse; /* Make all the cells snap together */
- height: 100%; /* Make sure height == width */
-}
-
-#board td {
- height: 70px;
- width: 70px;
-}
-
-#board tr:nth-child(even) td:nth-child(even), #board tr:nth-child(odd) td:nth-child(odd) {
- background: black;
-}
-
-#vertical-rule {
- position: absolute;
- height: 80%;
- border-left: 6px solid var(--light-blue);
- left: calc(50% - 3px); /* -3px offset because the left border is 6px */
-
- /* Vertically center */
- top: 0;
- bottom: 0;
- margin-top: auto;
- margin-bottom: auto;
-}
-
-#history-title {
- margin-top: 10%;
- margin-bottom: 5%;
-}
-
-#history {
- border-collapse: collapse;
-}
-
-#history tr td {
- text-align: center;
- height: 40px;
- width: 80px;
- font-size: 1.2em;
-}
-
-.turn-no {
- border-right: 3px solid var(--light-blue);
-}
-
-#resign {
- margin-top: 5%;
- background-color: var(--dark-blue);
- text-align: center;
- width: 400px;
-}
-
-#resign p {
- /* TODO: Make fonts work */
- font-family: "Saira Condensed";
- font-style: normal;
- font-weight: normal;
- font-size: 1.5em;
- color: white;
-}