diff --git a/UI/css/style.css b/UI/css/style.css index 5687755..af7259c 100644 --- a/UI/css/style.css +++ b/UI/css/style.css @@ -16,6 +16,7 @@ ul{ margin: 0; padding: 0; } + .button_1{ height: 38px; background: #08242D; @@ -89,7 +90,6 @@ header a:hover{ } /* squares */ - #squares{ margin-top: 20px; } @@ -131,6 +131,75 @@ footer{ text-align: center; } +/***** Registration page styles ******/ + +/* form input fields */ +input[type=text], input[type=password] { + width: 100%; + padding: 15px; + margin: 5px 0 22px 0; + display: inline-block; + border: none; + background: #f1f1f1; + } + + input[type=text]:focus, input[type=password]:focus { + background-color: #ddd; + outline: none; + } + + hr { + border: 1px solid #f1f1f1; + margin-bottom: 25px; + } + + /* style buttons */ + .delbtn, .regbtn { + background-color: #4CAF50; + color: white; + padding: 14px 20px; + margin: 8px 0; + border: none; + cursor: pointer; + width: 100%; + opacity: 0.9; + } + + button:hover { + opacity:1; + } + + /* more style for cancel button */ + .delbtn { + padding: 14px 20px; + background-color: #f44336; + } + + /* Float cancel and register account buttons*/ + .delbtn, .regbtn { + float: left; + width: 50%; + } + + /* Add padding to container elements */ + .regisdiv { + padding: 16px; + } + + /* float the buttons on the same line */ + .clearfix::after { + content: ""; + clear: both; + display: table; + } + + /* Change styles for cancel button and signup button on extra small screens */ + @media screen and (max-width: 300px) { + .cancelbtn, .signupbtn { + width: 100%; + } + } + /* social media icons*/ .fab { padding: 15px; @@ -187,4 +256,4 @@ footer{ font-size: 20px; padding: 10px; } -} \ No newline at end of file +} diff --git a/UI/img/download.png b/UI/img/download.png new file mode 100644 index 0000000..d0889f9 Binary files /dev/null and b/UI/img/download.png differ diff --git a/UI/index.html b/UI/index.html index ec90bef..9aa651e 100644 --- a/UI/index.html +++ b/UI/index.html @@ -24,6 +24,7 @@
diff --git a/UI/registration.html b/UI/registration.html
new file mode 100644
index 0000000..ba73785
--- /dev/null
+++ b/UI/registration.html
@@ -0,0 +1,67 @@
+
+
+
+
+
+