This commit is contained in:
1776123 2020-06-29 17:43:00 -04:00
parent 9378e14215
commit 8f43ffad11
2 changed files with 22 additions and 18 deletions

View File

@ -1,9 +1,9 @@
body{
font-family: 'Open Sans', sans-serif;
background: linear-gradient(to bottom, #33ccff 44%, #ff99cc 66%);
margin: 0 auto 0 auto;
width:100%;
text-align:center;
background-color: rgb(0,0,0);
background-color: rgb(0, 0, 4);
color: "white";
text-align: right;
margin: 20px 0px 20px 0px;
}
@ -15,24 +15,14 @@ p{
h1{
font-size:1.5em;
color:#525252;
}
.box{
background:black;
width:300px;
border-radius:6px;
margin: 0 auto 0 auto;
padding:0px 0px 70px 0px;
border: #2980b9 4px solid;
color:#fff;
}
.email{
background:#ecf0f1;
border: #ccc 1px solid;
border: #212529 1px solid;
border-bottom: #ccc 2px solid;
padding: 8px;
width:250px;
color:#AAAAAA;
margin-top:10px;
font-size:1em;
@ -88,3 +78,12 @@ h1{
#btn2:hover{
background:#3594D2;
}
.brancher{
background-image: ".css/res/inverse_branch.svg";
filter: blur(6px);
-webkit-filter:blur(6px);
background-repeat:no-repeat;
background-position:center;
background-size:cover;
height:100%
}

View File

@ -1,9 +1,12 @@
<!DOCTYPE html>
<html>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:700,600' rel='stylesheet' type="text/css">
<link rel="stylesheet" type="text/css" href="css/login.css">
<div class="brancher"></div>
<body>
<form method="post" action="signup.html">
<div class="box">
<h1>Dashboard</h1>
<h1>Brancher Influencer Sign Up</h1>
<input type="email address" name="email address" value="email address" onFocus="field_focus(this, 'email');" onblur="field_blur(this, 'email');" class="email" />
<input type="username" name="username" value="username" onFocus="field_focus(this, 'email');" onblur="field_blur(this, 'email');" class="email" />
@ -22,3 +25,5 @@
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/login.js"></script>
</body>
</html>