aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/css
diff options
context:
space:
mode:
authorJulia McCauley <skurvyj@gmail.com>2021-04-17 14:03:33 -0400
committerJulia McCauley <skurvyj@gmail.com>2021-04-17 14:03:33 -0400
commit6d6e00d739c532a5cddb5344b261a9681bc9da0b (patch)
tree4ef8fe66e5971e33489ccc7e974982c6917a4b92 /react-frontend/src/css
parentfa4feff17c9e15b86388fd5ee1ac6771ff4d5148 (diff)
parentcdcf7602c5fd2066f69fdbe64562e2faca915422 (diff)
pulling latest version Mgerge branch 'master' of github.com:cs0320-2021/term-project-cohwille-jmccaul3-mfoiani-rhunt2
Diffstat (limited to 'react-frontend/src/css')
-rw-r--r--react-frontend/src/css/Landing.css195
-rw-r--r--react-frontend/src/css/Modal.css146
2 files changed, 341 insertions, 0 deletions
diff --git a/react-frontend/src/css/Landing.css b/react-frontend/src/css/Landing.css
new file mode 100644
index 0000000..e6841f8
--- /dev/null
+++ b/react-frontend/src/css/Landing.css
@@ -0,0 +1,195 @@
+.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: 80vw;
+}
+main {
+ margin-top: 65px;
+ display: flex;
+ flex-direction: column;
+}
+
+.intro {
+ height: 1000px;
+ width: 100vw;
+ background-color: rgb(3, 2, 24);
+ color: white;
+ position: relative;
+ left: -10px;
+}
+
+.app-preview {
+ height: 1000px;
+ width: 100vw;
+ background-color: #b7ffb9;
+ color: white;
+ position: relative;
+ left: 0px;
+ position: relative;
+ left: -10px;
+}
+
+section {
+ width: 100vw;
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+
+}
+
+#app-intro{
+ padding-top: 160px;
+}
+
+.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: 700px;
+ 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;
+ }
+
+.footer-item{
+ color: white;
+ font-size: 20px;
+}
+
+
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;
+ }
+
+