From 4090158e55ab261ec9f319fe76c88e826b597ff2 Mon Sep 17 00:00:00 2001 From: Anant Verma <55052738+abstrxtInfinity@users.noreply.github.com> Date: Sat, 20 Mar 2021 12:43:47 +0530 Subject: [PATCH 01/28] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2719832..c73353d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # Trade and Code > Components for Trade and Code event platform + +logo.png From 50c6a27f78fb25f5ab56b35af8220202234ef73b Mon Sep 17 00:00:00 2001 From: Anant Verma <55052738+abstrxtInfinity@users.noreply.github.com> Date: Sat, 20 Mar 2021 12:46:32 +0530 Subject: [PATCH 02/28] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c73353d..9eac96f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # Trade and Code > Components for Trade and Code event platform -logo.png + From 0c8ff5ee33a29f2ee2543f0d09fc2af03d2487ab Mon Sep 17 00:00:00 2001 From: Anant Verma <55052738+abstrxtInfinity@users.noreply.github.com> Date: Sat, 20 Mar 2021 12:49:46 +0530 Subject: [PATCH 03/28] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9eac96f..6a5c034 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # Trade and Code > Components for Trade and Code event platform - - +---------------------------------------------- + From 842b0a1c5d46f69c6bce4ed5cfe63b85be644186 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Sun, 21 Mar 2021 20:50:13 +0530 Subject: [PATCH 04/28] custom cursor --- customCursor/cursor.js | 5 ++++ homeScreen/home.html | 3 +++ tradePortalPage/bh.gif | Bin 0 -> 8419008 bytes tradePortalPage/trade.css | 47 +++++++++++++++++++++++++++++++++++++ tradePortalPage/trade.html | 15 ++++++++++++ 5 files changed, 70 insertions(+) create mode 100644 customCursor/cursor.js create mode 100644 tradePortalPage/bh.gif create mode 100644 tradePortalPage/trade.css create mode 100644 tradePortalPage/trade.html diff --git a/customCursor/cursor.js b/customCursor/cursor.js new file mode 100644 index 0000000..3f7fb8b --- /dev/null +++ b/customCursor/cursor.js @@ -0,0 +1,5 @@ +new kursor({ + type: 1, + removeDefaultCursor: true, + color: "#fff" +}) \ No newline at end of file diff --git a/homeScreen/home.html b/homeScreen/home.html index bb744cc..3f30266 100644 --- a/homeScreen/home.html +++ b/homeScreen/home.html @@ -19,6 +19,7 @@ href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> + @@ -170,6 +171,8 @@

Contact Details-

+ + - + button.addEventListener("keydown", function (event) { + if (event.keyCode == 13 || event.keyCode == 32) { + fileInput.focus(); + } + }); + button.addEventListener("click", function (event) { + fileInput.focus(); + return false; + }); + fileInput.addEventListener("change", function (event) { + the_return.innerHTML = this.value.split(`\\`)[ + this.value.split(`\\`).length - 1 + ]; + }); + diff --git a/rounds/rounds.css b/rounds/rounds.css new file mode 100644 index 0000000..cd93145 --- /dev/null +++ b/rounds/rounds.css @@ -0,0 +1,195 @@ +@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"); + +* { + margin: 0; + padding: 0%; + box-sizing: border-box; + font-family: "Montserrat", sans-serif; +} + +body { + background-color: #000; + overflow-y: scroll; + overflow-x: hidden; +} +::-webkit-scrollbar { + width: 0; +} + +section { + width: 100%; + height: 100%; +} +main { + width: 80%; + height: 80vh; + margin: 5% 10%; + display: flex; + flex-direction: column; + align-items: center; +} +header h1 { + color: #fff; + text-transform: uppercase; + font-size: 2em; + letter-spacing: 0.3em; + font-weight: 400; + margin-bottom: 30px; + text-align: center; +} +hr { + border: 0; + height: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); + border-bottom: 1px solid rgba(255, 255, 255, 0.3); + margin-bottom: 50px; + width: 1000px; +} + +.container { + width: 100%; + height: 100%; + display: grid; + grid-gap: 50px; + padding: 10px 60px; + grid-template-columns: auto auto; +} + +.card { + width: 100%; + max-width: 600px; + min-width: 600px; + height: 250px; + background-color: black; + margin: 10px; + border-radius: 10px; + box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24); + border: 2px solid rgba(107, 107, 107, 0.384); + font-size: 16px; + position: relative; + display: flex; + flex-direction: column; + justify-content: center; + transition: all 0.3s ease; + padding: 30px 30px; +} +.circle { + position: absolute; + width: 100%; + height: 100%; + right: 0; + top: 0; + border-radius: 10px; + clip-path: circle(34.7% at 100% 45%); + background: rgba(128, 128, 128, 0.1); +} + +.card .title { + width: 100%; + margin: 0 20px; + text-align: left; + margin-top: 30px; + color: white; + font-weight: 600; + letter-spacing: 0.2em; + text-transform: uppercase; +} +.card .title span { + margin: 0 20px; + font-weight: 400; +} + +.card .text { + width: 80%; + margin: 0 auto; + font-size: 13px; + margin-top: 20px; + color: white; + font-weight: 200; + letter-spacing: 2px; + opacity: 0; + max-height: 0; + transition: all 0.3s ease; + list-style: none; +} + +.card:hover { + height: 270px; + background: #141313a9; +} + +.card:hover .info { + height: 90%; +} + +.card:hover .text { + transition: all 0.3s ease; + opacity: 1; + max-height: 40px; +} + +@media screen and (max-width: 1024px) { + .container { + display: flex; + flex-direction: column; + align-items: center; + } + .card { + width: 100%; + max-width: 350px; + min-width: 350px; + height: 250px; + background-color: black; + margin: 10px; + border-radius: 10px; + box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24); + border: 2px solid rgba(107, 107, 107, 0.384); + font-size: 16px; + position: relative; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + cursor: pointer; + transition: all 0.3s ease; + } + .card .title { + width: 100%; + margin: 0; + text-align: center; + margin-top: 30px; + color: white; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 4px; + } + + .card .text { + width: 80%; + margin: 0 auto; + font-size: 13px; + margin-top: 20px; + color: white; + font-weight: 200; + letter-spacing: 2px; + opacity: 0; + max-height: 0; + transition: all 0.3s ease; + list-style: none; + } + + .card:hover { + height: 270px; + background: #141313a9; + } + + .card:hover .info { + height: 90%; + } + + .card:hover .text { + transition: all 0.3s ease; + opacity: 1; + max-height: 40px; + } +} diff --git a/rounds/rounds.html b/rounds/rounds.html new file mode 100644 index 0000000..98da4f9 --- /dev/null +++ b/rounds/rounds.html @@ -0,0 +1,67 @@ + + + + + + + Round Details + + + +
+
+
+

Round Details

+
+
+
+
+

Round 1 Details

Start Time: XX:XX hours

+

+

    +
  • End Time: XX:XX hours
  • +
  • Round Duration: 1 hours
  • +
+

+
+
+
+

Round 1 Details

Start Time: XX:XX hours

+

+

    +
  • End Time: XX:XX hours
  • +
  • Round Duration: 1 hours
  • +
+

+
+
+
+

Round 1 Details

Start Time: XX:XX hours

+

+

    +
  • End Time: XX:XX hours
  • +
  • Round Duration: 1 hours
  • +
+

+
+
+
+

Round 1 Details

Start Time: XX:XX hours

+

+

    +
  • End Time: XX:XX hours
  • +
  • Round Duration: 1 hours
  • +
+

+
+
+ + + + + +
+
+
+ + From 30c1bad89bd36f8c3baf7ebe54434a1faa1791ff Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Tue, 23 Mar 2021 22:58:03 +0530 Subject: [PATCH 09/28] round page fixed --- rounds/rounds.css | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/rounds/rounds.css b/rounds/rounds.css index cd93145..724e4fa 100644 --- a/rounds/rounds.css +++ b/rounds/rounds.css @@ -9,8 +9,7 @@ body { background-color: #000; - overflow-y: scroll; - overflow-x: hidden; + overflow: scroll; } ::-webkit-scrollbar { width: 0; @@ -21,12 +20,12 @@ section { height: 100%; } main { - width: 80%; - height: 80vh; - margin: 5% 10%; + width: 100%; + height: 90vh; display: flex; flex-direction: column; align-items: center; + margin-top: 50px; } header h1 { color: #fff; @@ -42,26 +41,25 @@ hr { height: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.3); - margin-bottom: 50px; + margin-bottom: 30px; width: 1000px; } .container { - width: 100%; + width: auto; height: 100%; display: grid; - grid-gap: 50px; - padding: 10px 60px; grid-template-columns: auto auto; + grid-gap: 30px; + padding: 30px; } .card { width: 100%; - max-width: 600px; - min-width: 600px; - height: 250px; + max-width: 500px; + min-width: 500px; + max-height: 200px; background-color: black; - margin: 10px; border-radius: 10px; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24); border: 2px solid rgba(107, 107, 107, 0.384); From 7101d5bae086649b45c7978033e299b563d7ec2e Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Tue, 23 Mar 2021 23:30:50 +0530 Subject: [PATCH 10/28] round page fixed --- rounds/rounds.css | 26 ++++++++++++++++++++++++++ rounds/rounds.html | 39 ++++++--------------------------------- 2 files changed, 32 insertions(+), 33 deletions(-) diff --git a/rounds/rounds.css b/rounds/rounds.css index 724e4fa..be15f76 100644 --- a/rounds/rounds.css +++ b/rounds/rounds.css @@ -110,6 +110,24 @@ hr { transition: all 0.3s ease; list-style: none; } +.btn { + position: absolute; + bottom: 20px; + right: 40px; + width: 40px; + height: 50px; + border: 0; + padding: 10px; + border-radius: 50%; + background-color: rgb(48, 48, 48); + cursor: pointer; + visibility: hidden; + z-index: 2; + transition: all 0.1s; +} +.btn .fa { + color: #fff; +} .card:hover { height: 270px; @@ -125,6 +143,14 @@ hr { opacity: 1; max-height: 40px; } +.card:hover .btn { + visibility: visible; + cursor: pointer; +} +.btn:hover { + background: transparent; + border: 1px solid #fff; +} @media screen and (max-width: 1024px) { .container { diff --git a/rounds/rounds.html b/rounds/rounds.html index 98da4f9..357a1c9 100644 --- a/rounds/rounds.html +++ b/rounds/rounds.html @@ -5,6 +5,10 @@ Round Details + @@ -23,40 +27,9 @@

Round Details

  • Round Duration: 1 hours
  • +
    - -
    -

    Round 1 Details

    Start Time: XX:XX hours

    -

    -

      -
    • End Time: XX:XX hours
    • -
    • Round Duration: 1 hours
    • -
    -

    -
    -
    -
    -

    Round 1 Details

    Start Time: XX:XX hours

    -

    -

      -
    • End Time: XX:XX hours
    • -
    • Round Duration: 1 hours
    • -
    -

    -
    -
    -
    -

    Round 1 Details

    Start Time: XX:XX hours

    -

    -

      -
    • End Time: XX:XX hours
    • -
    • Round Duration: 1 hours
    • -
    -

    -
    -
    - - + From 86479b4d305629b7990f479b0623979d60e11646 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Tue, 23 Mar 2021 23:32:10 +0530 Subject: [PATCH 11/28] round page fixed --- rounds/rounds.css | 2 +- rounds/rounds.html | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/rounds/rounds.css b/rounds/rounds.css index be15f76..c447950 100644 --- a/rounds/rounds.css +++ b/rounds/rounds.css @@ -148,7 +148,7 @@ hr { cursor: pointer; } .btn:hover { - background: transparent; + background: #000; border: 1px solid #fff; } diff --git a/rounds/rounds.html b/rounds/rounds.html index 357a1c9..05a92a3 100644 --- a/rounds/rounds.html +++ b/rounds/rounds.html @@ -30,6 +30,39 @@

    Round Details

    +
    +

    Round 1 Details

    Start Time: XX:XX hours

    +

    +

      +
    • End Time: XX:XX hours
    • +
    • Round Duration: 1 hours
    • +
    +

    + +
    +
    +
    +

    Round 1 Details

    Start Time: XX:XX hours

    +

    +

      +
    • End Time: XX:XX hours
    • +
    • Round Duration: 1 hours
    • +
    +

    + +
    +
    +
    +

    Round 1 Details

    Start Time: XX:XX hours

    +

    +

      +
    • End Time: XX:XX hours
    • +
    • Round Duration: 1 hours
    • +
    +

    + +
    +
    From 52a8ac67fa314ffc312fcfcafcb32bafb1e8a086 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Wed, 24 Mar 2021 00:37:34 +0530 Subject: [PATCH 12/28] 404 page --- 404/404.html | 471 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 471 insertions(+) create mode 100644 404/404.html diff --git a/404/404.html b/404/404.html new file mode 100644 index 0000000..656d5ac --- /dev/null +++ b/404/404.html @@ -0,0 +1,471 @@ + + + + + + + 404 + + + +

    404

    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + From 3bc75c01c9f5c3e7a6d9ccb4cf53d04a055ee285 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Wed, 24 Mar 2021 12:22:35 +0530 Subject: [PATCH 13/28] 403 --- 404/404.html | 2 -- competitionStarted/started.css | 48 +++++++++++++++++++++++++++++++++ competitionStarted/started.html | 19 +++++++++++++ homeScreen/home.html | 9 ++++--- 4 files changed, 73 insertions(+), 5 deletions(-) create mode 100644 competitionStarted/started.css create mode 100644 competitionStarted/started.html diff --git a/404/404.html b/404/404.html index 656d5ac..0fa23cc 100644 --- a/404/404.html +++ b/404/404.html @@ -14,8 +14,6 @@ padding: 0; } - /*/////////////////// rules */ - /*/////////////////// scene */ .text { left: 50%; position: absolute; diff --git a/competitionStarted/started.css b/competitionStarted/started.css new file mode 100644 index 0000000..b6c7ceb --- /dev/null +++ b/competitionStarted/started.css @@ -0,0 +1,48 @@ +@import url("https://fonts.googleapis.com/css?family=Press+Start+2P"); +html, +body { + width: 100%; + height: 100%; + margin: 0; +} + +* { + font-family: "Press Start 2P", cursive; + box-sizing: border-box; +} + +#app { + padding: 1rem; + background: black; + display: flex; + height: 100%; + justify-content: center; + align-items: center; + color: cyan; + text-shadow: 0px 0px 10px; + font-size: 5rem; + flex-direction: column; +} +#app .txt { + font-size: 1.8rem; +} + +@keyframes blink { + 0% { + opacity: 0; + } + 49% { + opacity: 0; + } + 50% { + opacity: 1; + } + 100% { + opacity: 1; + } +} +.blink { + animation-name: blink; + animation-duration: 1s; + animation-iteration-count: infinite; +} diff --git a/competitionStarted/started.html b/competitionStarted/started.html new file mode 100644 index 0000000..f475900 --- /dev/null +++ b/competitionStarted/started.html @@ -0,0 +1,19 @@ + + + + + + + 403 + + + +
    +
    Access Denied
    +
    +
    + Competition Started Already_ +
    +
    + + diff --git a/homeScreen/home.html b/homeScreen/home.html index 3f30266..f3689ce 100644 --- a/homeScreen/home.html +++ b/homeScreen/home.html @@ -23,8 +23,10 @@ + - + + - - + From dbf68954c80f302593ea94818e7519ece628d8a0 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Wed, 24 Mar 2021 14:06:01 +0530 Subject: [PATCH 14/28] transaction table --- registerTeam/registerTeam.html | 195 ++++++++++++++++++++++-------- transactionTable/transaction.html | 120 ++++++++++++++++++ 2 files changed, 265 insertions(+), 50 deletions(-) create mode 100644 transactionTable/transaction.html diff --git a/registerTeam/registerTeam.html b/registerTeam/registerTeam.html index 401673d..907e7ea 100644 --- a/registerTeam/registerTeam.html +++ b/registerTeam/registerTeam.html @@ -4,62 +4,157 @@ - Team Registration - - - -
    -

    Trade and Code

    -
    -

    Event Team Registration

    -

    - Trade and Code is a team event (each team can have maximum 3 members) -

    -

    What will you do..?

    + + Create Team + + + +
    +
    - diff --git a/transactionTable/transaction.html b/transactionTable/transaction.html new file mode 100644 index 0000000..17954fa --- /dev/null +++ b/transactionTable/transaction.html @@ -0,0 +1,120 @@ + + + + + + + Transactions + + + + +
    +

    Transactions

    +
      +
    • +
      S no.
      +
      Message
      +
      Mode
      +
      Current Balance
      +
    • +
    • +
      1
      +
      Buying if else
      +
      Db.
      +
      5000
      +
    • +
    • +
      2
      +
      + Selling vector Library +
      +
      Cr.
      +
      6000
      +
    • +
    +
    + + From 19c8bd15bb06b15e2425f89370c1b8d9c5f49903 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Wed, 24 Mar 2021 21:08:43 +0530 Subject: [PATCH 15/28] confirm transactions --- README.md | 11 +- transactionTable/confirmtransactions.html | 165 ++++++++++++++++++++++ 2 files changed, 173 insertions(+), 3 deletions(-) create mode 100644 transactionTable/confirmtransactions.html diff --git a/README.md b/README.md index 6a5c034..cad0ad4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ # Trade and Code -> Components for Trade and Code event platform ----------------------------------------------- - + +## Components for Trade and Code event platform + +--- + +![LOGO](logo.png "Trade and Code Logo") + +--- diff --git a/transactionTable/confirmtransactions.html b/transactionTable/confirmtransactions.html new file mode 100644 index 0000000..bfdc161 --- /dev/null +++ b/transactionTable/confirmtransactions.html @@ -0,0 +1,165 @@ + + + + + + + Transactions + + + + +
    +

    Confirm Transactions

    +
      +
    • +
      S no.
      +
      Component
      +
      Qty.
      +
      T Amt.
      +
    • +
    • +
      1
      +
      if else
      +
      5
      +
      5000
      +
    • +
    • +
      1
      +
      if else
      +
      5
      +
      5000
      +
    • +
    • +
      1
      +
      if else
      +
      5
      +
      5000
      +
    • +
    • +
      1
      +
      if else
      +
      5
      +
      5000
      +
    • +
    + +
    + + From fae154d7e361095960ddd244a2025bd625862073 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Thu, 25 Mar 2021 00:21:05 +0530 Subject: [PATCH 16/28] trade portal --- tradePortalPage/trade.css | 110 ++++++++++++++++++++++++++++++++----- tradePortalPage/trade.html | 17 +++++- 2 files changed, 113 insertions(+), 14 deletions(-) diff --git a/tradePortalPage/trade.css b/tradePortalPage/trade.css index c6d1b6a..331b1e6 100644 --- a/tradePortalPage/trade.css +++ b/tradePortalPage/trade.css @@ -17,26 +17,16 @@ section { display: flex; position: relative; } -section::before { - content: ""; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: url("./bh.gif") no-repeat; - background-position: center; - background-size: 50%; - filter: blur(5px); -} .container { margin: 5%; width: 90%; height: 90%; - justify-content: center; display: flex; position: relative; + flex-direction: column; + align-items: center; + color: #fff; } .container h1 { color: #fff; @@ -44,4 +34,98 @@ section::before { font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; + margin: 30px 0; +} +form { + width: 100%; + display: flex; + justify-content: center; +} +@import url("https://rsms.me/inter/inter.css"); +:root { + --color-background: var(--color-light); + --color-text: var(--color-dark); + --color-accent: var(--color-signal); + --size-bezel: 0.5rem; + --size-radius: 4px; + line-height: 1.4; + font-family: "Inter", sans-serif; + font-size: calc(0.6rem + 0.4vw); +} + +form h2 { + font-weight: 400; +} + +.card { + width: 600px; + background: #000; + padding: calc(4 * var(--size-bezel)); + margin-top: calc(4 * var(--size-bezel)); + border-radius: var(--size-radius); + border: 1px solid var(--color-shadow, cyan); + box-shadow: 0.5rem 0.5rem 0 var(--color-shadow, rgba(40, 196, 196, 0.651)); +} + +.input { + position: relative; +} +.input__label { + position: absolute; + left: 0; + top: 0; + padding: calc(var(--size-bezel) * 0.75) calc(var(--size-bezel) * 0.5); + margin: calc(var(--size-bezel) * 0.75 + 3px) calc(var(--size-bezel) * 0.5); + white-space: nowrap; + transform: translate(0, 0); + transform-origin: 0 0; + background: #000; + transition: transform 120ms ease-in; + text-transform: uppercase; + line-height: 1.2; +} +.input__field { + box-sizing: border-box; + display: block; + width: 100%; + border: 2px solid currentColor; + padding: calc(var(--size-bezel) * 1.5) var(--size-bezel); + color: #fff; + background: transparent; + border-radius: var(--size-radius); +} +.input__field:not(:-moz-placeholder-shown) + .input__label { + transform: translate(0.25rem, -65%) scale(0.8); + color: cyan; +} +.input__field:not(:-ms-input-placeholder) + .input__label { + transform: translate(0.25rem, -65%) scale(0.8); + color: cyan; +} +.input__field:focus + .input__label, +.input__field:not(:placeholder-shown) + .input__label { + transform: translate(0.25rem, -65%) scale(0.8); + color: cyan; +} + +.button-group { + margin-top: 30px; +} + +button { + color: #fff; + padding: 8px 12px; + background: rgb(87, 86, 86); + border: none; + border-radius: 4px; + font-weight: 600; + text-transform: uppercase; + cursor: pointer; +} +button:hover { + box-shadow: 0 0 20px 0 rgba(0, 199, 236, 0.5); + background-color: #00c8ecb2; + -webkit-transition: all 0.2s ease-out; + -moz-transition: all 0.2s ease-out; + transition: all 0.2s ease-out; } diff --git a/tradePortalPage/trade.html b/tradePortalPage/trade.html index d42e037..5794b88 100644 --- a/tradePortalPage/trade.html +++ b/tradePortalPage/trade.html @@ -9,7 +9,22 @@
    -

    Trade Portal

    +
    +

    Trade Portal

    +
    +
    +

    Enter Team Code

    +
    + +
    + +
    +
    +
    +
    From cfab78ee1589314ceb4d210bd4f530c56d3ff6ae Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Thu, 25 Mar 2021 00:47:15 +0530 Subject: [PATCH 17/28] trade portal --- tradePortalPage/trade.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tradePortalPage/trade.css b/tradePortalPage/trade.css index 331b1e6..6d849e7 100644 --- a/tradePortalPage/trade.css +++ b/tradePortalPage/trade.css @@ -129,3 +129,6 @@ button:hover { -moz-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } +button:focus { + outline: 0; +} From 01cab62b9cfbb73686bda1083b76fe8c93408a92 Mon Sep 17 00:00:00 2001 From: Anant Verma Date: Thu, 25 Mar 2021 08:54:52 +0530 Subject: [PATCH 18/28] trade portal --- tradePortalPage/trade.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tradePortalPage/trade.html b/tradePortalPage/trade.html index 5794b88..d9c5f9d 100644 --- a/tradePortalPage/trade.html +++ b/tradePortalPage/trade.html @@ -13,7 +13,7 @@

    Trade Portal

    -

    Enter Team Code

    +

    Enter Other Team's Code


    +
    +
    -
    - -