Skip to content

Commit

Permalink
Fixed blurry image on registration page.
Browse files Browse the repository at this point in the history
  • Loading branch information
j0nat committed Jun 5, 2019
1 parent 38da57f commit 2cafb4a
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 56 deletions.
Binary file modified Registration Page/img/LiveMessengerClient.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 8 additions & 10 deletions Registration Page/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
</head>

<body>
<center>
<div id="MainWindow">
<div id="ClientImageDiv"></div>
<div id="RegisterDiv">
Expand Down Expand Up @@ -97,33 +96,32 @@ function mc_decrypt($decrypt, $key, $iv)
?>
</b></center>
<form action="" method="post">
<center>

<div>
<h1>Register</h1>
<h1>REGISTER</h1>
<label>
<span>Display Name</span><br><input id="name" type="text" name="name" maxlength="20" />
<span>Display Name</span><br><input placeholder="" autocomplete="off" id="name" type="text" name="name" maxlength="20" />
</label>
<br>
<label>
<span>Login ID</span><br><input id="email" type="text" name="id" maxlength="12" />
<span>Login ID</span><br><input placeholder="" autocomplete="off" id="email" type="text" name="id" maxlength="12" />
</label>
<br>
<label>
<span>Password</span><br><input id="email" type="password" name="pass" maxlength="20" />
<span>Password</span><br><input placeholder="" autocomplete="off" id="email" type="password" name="pass" maxlength="20" />
</label>
<br>
<label>
<input type="submit" value="submit" name="submit" style="width: 200px; height: 50px;" />
<input type="submit" value="register" name="submit" class="button" />
</label>
</div>
</center>

</form>
</div>

<div id="DownloadLinkDiv">
<center><a href="#">DOWNLOAD BETA CLIENT</a></center>
<a href="#">DOWNLOAD MESSENGER</a>
</div>
</div>
</center>
</body>
</html>
124 changes: 78 additions & 46 deletions Registration Page/style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
html {
left: 0%;
position: relative;
overflow-x: hidden;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-ms-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
left: 0%;
position: relative;
overflow-x: hidden;
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-ms-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease;
color: #666666;
}

body
{
body {
overflow:auto;
background-color: WhiteSMoke;
/*background-color: WhiteSMoke;*/
background-color: #fdfdfd;
}

#MainWindow
{
#MainWindow {
background-image: url("\img\\header.png");
background-repeat: no-repeat;
background-position: center 25px;
Expand All @@ -30,42 +30,46 @@ body
left: 0;
right: 0;

border: 1px solid #ccc;
background-color: #FAFAFA;
/*border: 1px solid #ccc;
background-color: #FAFAFA;*/
}

#DownloadLinkDiv
{
#DownloadLinkDiv {
position:absolute;
bottom: 0;
left:50%;
margin-bottom: 5px;
left:33%;
margin-bottom: 10px;
transform: translate(-50%, 0%);
font-size: 18px;
font-size: 16px;
font-weight: bold;
background-color: #6699ff;
color: white;
font-family: helvetica;
padding: 0.75em 1.6em;
text-decoration: none;
text-transform: uppercase;
}

#ClientImageDiv
{
width: 527px;
height: 691px;
#ClientImageDiv {
width: 540px;
height: 706px;
margin: 0;
padding: 0;
position: absolute;
top: 55%;
left: 12%;
transform: translate(-12%, -50%);
top: 15%;
left: 5%;
transform: scale(1.0f);
background-image: url("\img\\LiveMessengerClient.png");
background-repeat: no-repeat;
background-position: center center;
}

a:link { color: #c00 } /* unvisited links */
a:visited { color: #0c0 } /* visited links */
a:hover { color: #00c } /* user hovers */
a:active { color: #ccc } /* active links */
a:link { color: #FFF; text-decoration: none; }
a:visited { color: #FFF; text-decoration: none; }
a:hover { color: #FFF; text-decoration: none; }
a:active { color: #FFF; text-decoration: none; }

#RegisterDiv
{
#RegisterDiv {
margin: 0;
padding: 0;
position: absolute;
Expand All @@ -75,21 +79,49 @@ a:active { color: #ccc } /* active links */
}

form {
margin: auto;
position: relative;
width: 200px;
height: 350px;
font-family: Tahoma, Geneva, sans-serif;
font-size: 14px;
line-height: 24px;
color: #8c8c8c;
text-decoration: none;
padding: 10px;
position: relative;
width: 200px;
height: 350px;
font-family: sans-serif;
font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #8c8c8c;
text-decoration: none;
display: inline-block;
padding: 3px;
margin: 0px;
}

input {
border: 1px solid #737373;
padding: 2px;
background: rgba(255,255,255,0.5);
width: 95%;
border: 0;
padding: 4px;
margin: 0 0 10px 0;
background-color: #f2f2f2;
border-radius: 5px;
}

form h1 {
text-align: center;
color: #66b3ff;
}

form span {

color: #5c85d6;
}

.button {
background-color: #80bfff;
border: none;
color: white;
width: 98%;
padding: 10px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 18px;
margin: 14px 2px;
cursor: pointer;
}

0 comments on commit 2cafb4a

Please sign in to comment.