|
|
@@ -10,6 +10,7 @@ body{
|
|
|
font-family:'Saira',sans-serif;
|
|
|
color: rgb(0, 27, 45);
|
|
|
min-height: 100vh;
|
|
|
+ background-color: rgb(0, 27, 45);
|
|
|
}
|
|
|
|
|
|
/* General style that should apply to all pages */
|
|
|
@@ -58,17 +59,17 @@ form{
|
|
|
flex-direction: column;
|
|
|
justify-content: center;
|
|
|
border: 2px solid rgb(0, 27, 45);
|
|
|
- padding: 25px;
|
|
|
+ padding: 50px;
|
|
|
border-radius: 10px;
|
|
|
margin: 10px;
|
|
|
background: rgb(240, 252, 255);
|
|
|
- box-shadow: 1px 1px 1px rgb(0, 27, 45);
|
|
|
+ font-size: 16px;
|
|
|
+ margin-top: 80px;
|
|
|
+ width: 550px;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ height: auto;
|
|
|
}
|
|
|
|
|
|
- form > *{
|
|
|
- margin: 10px;
|
|
|
- }
|
|
|
-
|
|
|
.buttonBox{
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
@@ -80,25 +81,33 @@ form{
|
|
|
}
|
|
|
|
|
|
.button{
|
|
|
- background: none;
|
|
|
- font-family:'Saira',sans-serif;
|
|
|
- border: 5px solid rgb(255, 99, 107);
|
|
|
+ display: initial;
|
|
|
+ background: rgb(255, 99, 107);
|
|
|
+ border: none;
|
|
|
text-decoration: none;
|
|
|
- border-radius: 10px;
|
|
|
- padding: 5px;
|
|
|
- color: rgb(0, 27, 45);
|
|
|
+ border-radius: 4px;
|
|
|
+ padding: 10px 29px;
|
|
|
+ color: white;
|
|
|
cursor: pointer;
|
|
|
- font-size: 20px;
|
|
|
- font-weight: bold;
|
|
|
- box-shadow: 2px 2px 2px black;
|
|
|
+ font-size: 25px;
|
|
|
transition: 0.3s;
|
|
|
text-align: center;
|
|
|
+ font-size: 18px;
|
|
|
+ cursor: pointer;
|
|
|
+ font-weight: 500;
|
|
|
+ margin-right: 33px;
|
|
|
+}
|
|
|
+
|
|
|
+.button:hover{
|
|
|
+ background: rgb(243, 77, 86);
|
|
|
+ color: white;
|
|
|
}
|
|
|
|
|
|
- .button:hover{
|
|
|
- background: rgb(0, 27, 45);
|
|
|
- color: rgb(240, 252, 255);
|
|
|
- }
|
|
|
+.button-join {
|
|
|
+ font-size: medium;
|
|
|
+ color:white;
|
|
|
+ text-decoration: blink;
|
|
|
+}
|
|
|
|
|
|
.button-small{
|
|
|
background: none;
|
|
|
@@ -114,6 +123,12 @@ form{
|
|
|
transition: 0.3s;
|
|
|
}
|
|
|
|
|
|
+.public-buttons {
|
|
|
+ position: inherit;
|
|
|
+ align-self: center;
|
|
|
+ margin-right: 39px;
|
|
|
+}
|
|
|
+
|
|
|
.buttonBox{
|
|
|
display: flex;
|
|
|
justify-content: space-around;
|
|
|
@@ -144,6 +159,63 @@ form{
|
|
|
border-color: red;
|
|
|
}
|
|
|
|
|
|
+input[type=text], select {
|
|
|
+ width: 100%;
|
|
|
+ padding: 12px 20px;
|
|
|
+ margin: 8px 0;
|
|
|
+ display: inline-block;
|
|
|
+ border: 1px solid #ccc;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-bottom: 16px;
|
|
|
+ font-size: 16px;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ input[type=text], input[type=password], select {
|
|
|
+ width: 100%;
|
|
|
+ padding: 12px 20px;
|
|
|
+ margin: 8px 0;
|
|
|
+ display: inline-block;
|
|
|
+ border: 1px solid #ccc;
|
|
|
+ border-radius: 4px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ input[type=submit] {
|
|
|
+ width: 100%;
|
|
|
+ background-color:rgb(255, 99, 107);
|
|
|
+ color: white;
|
|
|
+ padding: 14px 20px;
|
|
|
+ margin: 8px 0;
|
|
|
+ border: none;
|
|
|
+ border-radius: 4px;
|
|
|
+ cursor: pointer;
|
|
|
+ font-size: 22px;
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ input[type=submit]:hover {
|
|
|
+ background: rgb(243, 77, 86);
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+
|
|
|
+ input[type=text]:focus, input[type=password]:focus {
|
|
|
+ border: 2px solid #555;
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ input[type=button] {
|
|
|
+ background-color: rgb(255, 99, 107);
|
|
|
+ }
|
|
|
+
|
|
|
+ input[type=button]:hover {
|
|
|
+ background-color:rgb(0, 27, 45);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
.strand, .action{
|
|
|
display: none;
|
|
|
}
|
|
|
@@ -186,13 +258,20 @@ strand-selector{
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
text-decoration: none;
|
|
|
- margin-left: 5px;
|
|
|
+ margin-left: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .header-logo{
|
|
|
+ display: inline-block;
|
|
|
+ color: rgb(255, 99, 107);
|
|
|
+ font-size: 25px;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
|
|
|
.header img{
|
|
|
display: inline-block;
|
|
|
- max-height: 65px;
|
|
|
- margin: 5px;
|
|
|
+ max-height: 40px;
|
|
|
+ margin: 15px;
|
|
|
text-align: center;
|
|
|
}
|
|
|
|
|
|
@@ -234,6 +313,25 @@ strand-selector{
|
|
|
color: white;
|
|
|
}
|
|
|
|
|
|
+ .link {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .link:hover {
|
|
|
+ color: #ff636b;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-background{
|
|
|
+ background-image: url("/shared/images/backgroundImg01.jpg");
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: cover;
|
|
|
+ height: -webkit-fill-available;
|
|
|
+ width: 100%;
|
|
|
+ color: rgb(0, 27, 45);
|
|
|
+ margin-bottom: 136px;
|
|
|
+ }
|
|
|
+
|
|
|
/* Footer Partial */
|
|
|
.spacer{
|
|
|
flex: 1;
|
|
|
@@ -266,4 +364,20 @@ strand-selector{
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+h1 {
|
|
|
+ text-align: center;
|
|
|
+ padding-bottom: 13px;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+h3 {
|
|
|
+ text-align: center;
|
|
|
+ font-weight: 500;
|
|
|
+ color: gray;
|
|
|
+}
|
|
|
+
|
|
|
+label {
|
|
|
+ margin-top:20px ;
|
|
|
}
|