aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/css
diff options
context:
space:
mode:
Diffstat (limited to 'react-frontend/src/css')
-rw-r--r--react-frontend/src/css/App.css86
-rw-r--r--react-frontend/src/css/Canvas.css7
-rw-r--r--react-frontend/src/css/CoordSelector.css52
-rw-r--r--react-frontend/src/css/Landing.css256
-rw-r--r--react-frontend/src/css/Modal.css146
-rw-r--r--react-frontend/src/css/Route.css56
-rw-r--r--react-frontend/src/css/UserCheckin.css94
7 files changed, 697 insertions, 0 deletions
diff --git a/react-frontend/src/css/App.css b/react-frontend/src/css/App.css
new file mode 100644
index 0000000..e39eb3e
--- /dev/null
+++ b/react-frontend/src/css/App.css
@@ -0,0 +1,86 @@
+.App {
+ display: grid;
+ grid-template-areas: "head canvasFill2 canvasFill3 checkin"
+ "canvasFill1 canvasFill2 canvasFill3 checkin"
+ "route canvasFill2 canvasFill3 checkin";
+ grid-template-rows: max-content auto max-content;
+ grid-template-columns: max-content auto max-content max-content;
+ background-color: #121212;
+
+}
+
+.App-logo {
+ height: 40vmin;
+ pointer-events: none;
+}
+
+
+.Canvas-filler {
+ width: 100%;
+ height: 100%;
+
+ z-index: 1;
+}
+
+.Canvas-filler-1 {
+ grid-area: canvasFill1;
+}
+.Canvas-filler-2 {
+ grid-area: canvasFill2;
+}
+.Canvas-filler-3 {
+ grid-area: canvasFill3;
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ .App-logo {
+ animation: App-logo-spin infinite 20s linear;
+ }
+}
+
+.App-header {
+ grid-area: head;
+ min-height: 7vh;
+ width: max-content;
+ display: flex;
+ padding: 0 20px;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-size: calc(10px + 2vmin);
+ color: white;
+ z-index: 10;
+ margin: 5px;
+
+}
+
+#in-app-logo-holder {
+ border: 7px solid rgb(7, 94, 12);
+ border-radius: 5px;
+ background-color: white;
+}
+
+.App-link {
+ color: #61dafb;
+}
+
+@keyframes App-logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+.Loading {
+ z-index: 100;
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+}
+
+#in-app-logo {
+ width: 200px;
+} \ No newline at end of file
diff --git a/react-frontend/src/css/Canvas.css b/react-frontend/src/css/Canvas.css
new file mode 100644
index 0000000..e67d87d
--- /dev/null
+++ b/react-frontend/src/css/Canvas.css
@@ -0,0 +1,7 @@
+.Map-canvas {
+ /*touch-action: none; */
+ position: absolute;
+ z-index: 5;
+ width: 100vw;
+ height: 100vh;
+} \ No newline at end of file
diff --git a/react-frontend/src/css/CoordSelector.css b/react-frontend/src/css/CoordSelector.css
new file mode 100644
index 0000000..881be08
--- /dev/null
+++ b/react-frontend/src/css/CoordSelector.css
@@ -0,0 +1,52 @@
+/* CSS adapted from w3school buttons */
+.Btn-select-left > p, .Btn-select-right > p {
+ padding: 0;
+ margin: 0;
+}
+
+.Btn-select-left {
+ background-color: #424242;
+ border: 4px solid pink;
+}
+
+.Btn-select-left:hover {
+ box-shadow: 3px 3px #888888;
+ color: black;
+ background-color: pink;
+}
+
+.Btn-select-right {
+ background-color: #424242;
+ border: 4px solid lightblue;
+}
+
+.Btn-select-right:hover {
+ box-shadow: 3px 3px #888888;
+ color: black;
+ background-color: lightblue;
+}
+
+.Btn:disabled,
+.Btn[disabled]{
+ border: 1px solid #999999;
+ background-color: #cccccc;
+ color: #666666;
+ box-shadow: none;
+ cursor: default;
+}
+
+/*
+.Btn:disabled:hover,
+.Btn[disabled]:hover{
+}
+*/
+
+.Textbox {
+ width: 100px;
+}
+
+.Number-input {
+ width: 90%;
+}
+
+
diff --git a/react-frontend/src/css/Landing.css b/react-frontend/src/css/Landing.css
new file mode 100644
index 0000000..58658b0
--- /dev/null
+++ b/react-frontend/src/css/Landing.css
@@ -0,0 +1,256 @@
+html {
+ scroll-behavior: smooth;
+ z-index: 1000;
+
+}
+
+.nav-bar{
+ position: fixed;
+ top: 0px;
+ left: 0px;
+ width: 100vw;
+ height: 70px;
+ background-color: rgb(7, 7, 44);
+ z-index: 100;
+}
+
+.topnav {
+ background-color: rgb(7, 7, 44);
+ overflow: hidden;
+ margin-right: 30px;
+}
+
+.topnav a {
+ float: right;
+ color: #f2f2f2;
+ text-align: center;
+ padding: 14px 16px;
+ text-decoration: none;
+ font-size: 17px;
+ height: 30px;
+ padding-top: 25px;
+}
+
+.topnav a:hover {
+ background-color: rgb(17, 11, 99);
+ color: white;
+}
+
+.topnav a.active {
+ background-color: #4CAF50;
+ color: white;
+}
+
+.body {
+ background-color: #f3f3f3;
+ font-family:Verdana, Geneva, Tahoma, sans-serif;
+ overflow-y: scroll;
+ overflow-x: hidden;
+ display: flex;
+ flex-direction: column;
+ width: 100vw;
+ scroll-behavior: smooth slow;
+ z-index: 100;
+}
+main {
+ margin-top: 65px;
+ display: flex;
+ flex-direction: column;
+}
+
+.intro {
+ height: 900px;
+ width: 100vw;
+ background-color: rgb(3, 2, 24);
+ color: white;
+ position: relative;
+ left: -10px;
+}
+
+#enter-watchdogs {
+ background-color: rgb(206, 206, 206);
+ color: rgba(10, 9, 71);
+ border: 2px solid rgb(255, 255, 255);
+ border-radius: 5px;
+ padding: 5px 10px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ height: 70px;
+ width: 200px;
+ font-weight: bold;
+ font-family:sans-serif;
+}
+#enter-watchdogs:hover {
+ background-color: #94ff73;
+}
+
+.app-preview {
+ height: 900px;
+ width: 100vw;
+ background-color: #b7ffb9;
+ color: white;
+ position: relative;
+ left: 0px;
+ position: relative;
+ left: -10px;
+}
+
+#preview {
+ width: 70vw;
+ border: 10px solid rgb(255, 255, 255);
+ border-radius: 5px;
+}
+
+#preview-text {
+ color:#868686;
+ font-size: small;
+}
+
+section {
+width: 100vw;
+overflow: hidden;
+display: flex;
+flex-direction: column;
+justify-content: center;
+align-items: center;
+
+}
+
+#app-intro{
+padding-top: 160px;
+height: fit-content;
+width: 100vw;
+}
+
+.team {
+width: 100%;
+max-width: 1600px;
+display: flex;
+flex-direction: row;
+justify-content: space-evenly;
+padding-top: 0px;
+width: 80%;
+min-height: 500px;
+align-items: center;
+}
+
+.center {
+display: flex;
+flex-direction: column;
+justify-content: center;
+}
+
+.heading{
+font-size: 45px;
+margin: 10px 0 0 0;
+text-align: center;
+font-weight: bold;
+}
+
+.text{
+color: rgba(0,0,0, 0.6);
+font-size: 18px;
+display: flex;
+justify-content: center;
+align-items: center;
+text-align: center;
+max-width: 70vw;
+margin: 10px 0 20px 0;
+}
+
+#team {
+width: 100vw;
+padding: 50px 0 200px 0;
+justify-content: flex-start;
+background-color: #cccccc;
+position: relative;
+left: -10px;
+}
+
+#team-heading{
+margin-bottom: 0px;
+}
+
+#team-holder {
+flex-direction: column;
+max-width: 1000px;
+max-height: 500px;
+height: 500px;
+}
+
+#people-holder{
+display: flex;
+flex-direction: row;
+justify-content: center;
+align-items: center;
+width: 100%;
+}
+
+.team-person-holder{
+display: flex;
+flex-direction: column;
+justify-content: center;
+align-items: center;
+margin-top: 50px;
+}
+
+.team-person{
+border-radius: 100px;
+overflow: hidden;
+margin: 20px;
+height: 200px;
+width: 200px;
+box-shadow: 0 0 2px 2px rgba(0,0,0,0.15);
+}
+
+.team-text{
+color: rgba(0,0,0, 1);
+font-size: 18px;
+display: flex;
+justify-content: center;
+align-items: center;
+text-align: center;
+max-width: 700px;
+margin: 0;
+}
+
+#footer {
+ width: 100vw;
+ background: rgb(7, 7, 44);
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ left: -10px;
+ height: fit-content;
+ width: 100vw;
+}
+
+.footer-item{
+ color: white;
+ font-size: 20px;
+}
+.footer-subtext{
+ color: white;
+ font-size: 15px;
+ width: 80vw;
+}
+
+.appinfotxt {
+font-size: 15px;
+color:rgb(3, 2, 24);
+max-width: 70vw;
+}
+
+.h2 {
+font-size: 30px;
+color: black;
+}
+
+#return-to-landing {
+z-index: 1000;
+}
+
diff --git a/react-frontend/src/css/Modal.css b/react-frontend/src/css/Modal.css
new file mode 100644
index 0000000..96f9066
--- /dev/null
+++ b/react-frontend/src/css/Modal.css
@@ -0,0 +1,146 @@
+.modal {
+ background-color: aqua;
+ display: block; /* Hidden by default */
+ position: fixed; /* Stay in place */
+ z-index: 100; /* Sit on top */
+ padding-top: 100px; /* Location of the box */
+ left: 0;
+ top: 0;
+ width: 100%; /* Full width */
+ height: 100%; /* Full height */
+ overflow: auto; /* Enable scroll if needed */
+ background-color: rgba(0, 0, 0, 0.8);
+ color: white;
+}
+
+.m{
+ border: 7px solid rgb(7, 94, 12);
+ border-radius: 5px;
+ background-color: white;
+ color: black;
+ position: fixed;
+ height: fit-content;
+ width: 20vw;
+ padding: .5%;
+}
+
+.modal0{
+ top: 30vh;
+ left: 40vw;
+}
+.modal1{
+ top: 7vh;
+ right: 29vw;
+}
+@media (max-width: 750px) {
+ .modal1{
+ top: 7vh;
+ right: 0vw;
+ }
+}
+.modal2{
+ bottom: 20vh;
+ left: 5vw;
+}
+.modal3{
+ top: 35vh;
+ left: 45vw;
+}
+.modal4{
+ top: 30vh;
+ left: 37vw;
+ padding: 2%;
+}
+
+.restart-modal:after{
+ z-index: 101;
+ border: 7px solid rgb(7, 94, 12);
+ border-radius: 15px;
+ background-color: white;
+ color: black;
+ position: fixed;
+ height: 25px;
+ width: 30px;
+ bottom: 30px;
+ right: 3vw;
+ content:'?';
+}
+.restart-modal:hover:after{
+ content:'Restart Orientation';
+ width: 150px;
+}
+
+.span {
+ font-weight: bold;
+ color:rgba(10, 9, 71);
+}
+
+.arrow {
+ border: solid black;
+ border-width: 0 3px 3px 0;
+ display: inline-block;
+ padding: 3px;
+ }
+
+ .right {
+ transform: rotate(-45deg);
+ -webkit-transform: rotate(-45deg);
+ }
+
+ .left {
+ transform: rotate(135deg);
+ -webkit-transform: rotate(135deg);
+ }
+
+ .up {
+ transform: rotate(-135deg);
+ -webkit-transform: rotate(-135deg);
+ }
+
+ .down {
+ transform: rotate(45deg);
+ -webkit-transform: rotate(45deg);
+ }
+
+ .align-right{
+ text-align: right;
+ margin-right: 15px;
+ }
+
+ .align-center{
+ text-align: center;
+ }
+
+ .align-left{
+ text-align: left;
+ margin-left: 15px;
+ }
+
+ .next{
+ background-color: rgb(206, 206, 206);
+ color: black;
+ border: 2px solid rgba(10, 9, 71);
+ border-radius: 5px;
+ padding: 5px 10px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ }
+
+ .next:hover {
+ background-color: rgb(7, 94, 12);
+ color: white;
+ }
+
+ .skip{
+ background-color: white;
+ border: none;
+ color:rgb(119, 119, 119);
+ }
+
+ .skip:hover{
+ color: black;
+ }
+
+
diff --git a/react-frontend/src/css/Route.css b/react-frontend/src/css/Route.css
new file mode 100644
index 0000000..efc4868
--- /dev/null
+++ b/react-frontend/src/css/Route.css
@@ -0,0 +1,56 @@
+.Route {
+ grid-area: route;
+ z-index: 10;
+ color: white;
+ border-radius: 10px;
+ background-color: #121212;
+ /*cursor: default;*/
+ /* Transparent background */
+ background: rgba(0, 0, 0, 0);
+}
+
+.Coord-selectors-flex {
+ display: flex;
+ gap: 20px;
+ padding: 8px;
+ margin: 0;
+ align-content: flex-end;
+ background-color: #333333;
+ margin: 5px;
+ border-radius: 3px;
+}
+
+/* CSS adapted from w3school buttons */
+.Btn {
+ color: white;
+ padding: 16px 32px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ margin: 4px 2px;
+ transition-duration: 0.4s;
+ cursor: pointer;
+ outline: none;
+}
+
+.Route-btn:hover {
+ box-shadow: 3px 3px #ccc;
+ color: black;
+ background-color: lightgreen;
+}
+
+.Route-btn {
+ background-color: #424242;
+ border: 2px solid lightgreen;
+ box-shadow: .5px .5px 0 2px lightgreen;
+}
+
+.Btn:disabled,
+.Btn[disabled]{
+ border: 1px solid #999999;
+ background-color: #cccccc;
+ color: #666666;
+ /*cursor: default;*/
+ box-shadow: none;
+} \ No newline at end of file
diff --git a/react-frontend/src/css/UserCheckin.css b/react-frontend/src/css/UserCheckin.css
new file mode 100644
index 0000000..141cc01
--- /dev/null
+++ b/react-frontend/src/css/UserCheckin.css
@@ -0,0 +1,94 @@
+.User-checkin {
+ grid-area: checkin;
+ height: 100vh;
+ background-color: #121212;
+ z-index: 10;
+ color: white;
+ border-radius: 10px;
+ display: flex;
+ font-size: 18px;
+ cursor: default;
+ /* Transparent background */
+ background: rgba(0, 0, 0, 0);
+}
+
+ul {
+ list-style-type: none;
+}
+
+.User-checkin > div {
+ z-index: 10;
+ background-color: #333333;
+ border-radius: 20px;
+ margin: 5px;
+}
+
+.Coord-ex {
+ height: 1vh;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+}
+
+.Chosen-user > h2, .Checkins > h2 {
+ display: flex;
+ justify-content: space-evenly;
+ height: 5vh;
+ padding: 0 10px;
+}
+
+.Checkin-list {
+ padding: 0 20px;
+ height: 86vh;
+ overflow-y: scroll;
+ cursor: default;
+}
+
+.User-checkin-list {
+ height: 80vh;
+ overflow-y: scroll;
+
+ list-style-position: inside;
+ padding: 0 20px;
+ text-align: center;
+ text-indent: -12px;
+}
+
+.User-checkin-list > li {
+ margin-bottom: 20px;
+}
+
+
+.Checkin {
+ padding-top: 10px;
+ border-bottom: 1px solid #e6ecf0;
+}
+
+.Checkin:last-child {
+ border-bottom: none;
+}
+
+.Img-flex {
+ margin: 5px 10px 10px 0;
+ gap: 20px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.Img-btn {
+ background-color: #424242;
+ border-radius: 50%;
+ margin-right: 10px;
+}
+
+.Img-btn:hover {
+ box-shadow: 3px 3px #333333;
+ cursor: pointer;
+}
+
+.Clickable-name {
+ cursor: pointer;
+ text-decoration: underline;
+ color: lightgreen;
+} \ No newline at end of file