commit 789fc6a19bd4694e3241bc60623bea70b4cd00a7
parent 879d4ff11eaf7cf651f1d3718c9b17c6d61536bc
Author: Andrew <andreww107@gmail.com>
Date: Sun, 16 Dec 2018 21:00:55 -0500
Update style.css
Diffstat:
M | website/style.css | | | 73 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 73 insertions(+), 0 deletions(-)
diff --git a/website/style.css b/website/style.css
@@ -51,3 +51,76 @@ a.off:hover {
background:red;
color: white;
}
+
+/*sign in page*/
+.signin-form {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translateX(-50%) translateY(-50%);
+ background: white;
+ padding: 20px;
+}
+
+form h2 {
+ color: rgb(3,83,136);
+ text-align: center;
+ font-family: 'Raleway', sans-serif;
+ font-size: 200%;
+}
+
+form input {
+ display: block;
+ width: 100%;
+ height: 50px;
+ background: rgba(0, 0, 0, .3);
+ outline: none;
+ border: 1px solid rgba(1, 1, 1, .5);
+ color: white;
+ font-family: 'Raleway', sans-serif;
+ font-weight: lighter;
+ font-size: 14px;
+ margin-bottom: 10px;
+ padding-left: 10px;
+ border-radius: 5px;
+}
+
+form button {
+ width: 332px;
+ height: 50px;
+ font-size: 16px;
+ background-color: rgb(3,83,136);
+ color: white;
+ border: none;
+ -webkit-transition-duration: 0.4s; /* Safari */
+ transition-duration: 0.4s;
+}
+
+form button:hover{
+ background-color: rgb(118, 193, 243);
+}
+
+form a{
+ color: rgb(3,83,136);;
+}
+
+/*sign up page*/
+.signup-form {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translateX(-50%) translateY(-50%);
+ background: white;
+ padding: 20px;
+}
+
+.find-survey-form {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translateX(-50%) translateY(-50%);
+ background: white;
+ padding: 20px;
+ font-family: 'Raleway', sans-serif;
+ color: rgb(3,83,136);
+}