|
|
@@ -1,15 +1,109 @@
|
|
|
-*{margin:0;padding:0;}
|
|
|
-
|
|
|
-body{
|
|
|
- font-family: 'Saira', sans-serif;
|
|
|
+#publicStrand{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
}
|
|
|
|
|
|
+ .main-background{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-image: url("/shared/images/backgroundImg01.jpg");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ height: 88vh;
|
|
|
+ width: 100%;
|
|
|
+ color: rgb(0, 27, 45);
|
|
|
+ }
|
|
|
+
|
|
|
+ .public-buttons{
|
|
|
+ position: absolute;
|
|
|
+ right: 50px;
|
|
|
+ top: 80px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .public-buttons *{
|
|
|
+ margin: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo-text{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ max-width: 50vw;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo-text img{
|
|
|
+ max-height: 25vh;
|
|
|
+ margin-bottom: 50px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo-text p{
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 25px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-info{
|
|
|
+ background: rgb(0, 27, 45);
|
|
|
+ color: rgb(201, 201, 201);
|
|
|
+ text-align: center;
|
|
|
+ padding: 75px;
|
|
|
+ border-top: 5px solid black;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-info h1{
|
|
|
+ color: rgb(255, 99, 107);
|
|
|
+ margin: 25px;
|
|
|
+ font-size: 45px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-info p{
|
|
|
+ font-size: 25px;
|
|
|
+ color: rgb(201, 201, 201);
|
|
|
+ text-align: justify;
|
|
|
+ padding: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-info li{
|
|
|
+ font-size: 20px;
|
|
|
+ color: rgb(201, 201, 201);
|
|
|
+ text-align: justify;
|
|
|
+ padding: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-info span{
|
|
|
+ font-weight: bold;
|
|
|
+ color: rgb(255, 99, 107);
|
|
|
+ }
|
|
|
+
|
|
|
#loginStrand{
|
|
|
display: none;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-image: url("/shared/images/backgroundImg01.jpg");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ height: 91.5vh;
|
|
|
}
|
|
|
|
|
|
-/* Displaying the choice for the POS system */
|
|
|
-#posChoiceStrand{
|
|
|
+ #loginStrand form{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ border: 2px solid rgb(201, 201, 201);
|
|
|
+ background: rgb(240, 252, 255);
|
|
|
+ color: rgb(255, 99, 107);
|
|
|
+ padding: 25px;
|
|
|
+ border-radius: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ #loginStrand form > *{
|
|
|
+ margin: 10px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+/* #posChoiceStrand{
|
|
|
display: none;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
@@ -36,11 +130,11 @@ body{
|
|
|
}
|
|
|
|
|
|
.cards > *:hover{
|
|
|
- box-shadow: 0 0 25px #ff626b;
|
|
|
+ box-shadow: 0 0 25px #ff636b;
|
|
|
}
|
|
|
|
|
|
.cards > *:active{
|
|
|
- box-shadow: 0 0 10px #ff626b;
|
|
|
+ box-shadow: 0 0 10px #ff636b;
|
|
|
}
|
|
|
|
|
|
.cards p{
|
|
|
@@ -51,4 +145,4 @@ body{
|
|
|
|
|
|
.cards img{
|
|
|
margin: auto 10px;
|
|
|
- }
|
|
|
+ } */
|