A Pen by Stanley Lai

Developer
Size
3,066 Kb
Views
14,168

How do I make an a pen by stanley lai?

What is a a pen by stanley lai? How do you make a a pen by stanley lai? This script and codes were developed by Stanley Lai on 14 November 2022, Monday.

A Pen by Stanley Lai Previews

A Pen by Stanley Lai - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>A Pen by Stanley Lai</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="loginForm">	<h1>Account Sign In</h1>	<p>	<label for="email">Email Address</label>	<input type="email" name="email" id="email" class="text" />	</p>	<p>	<label for="password">Password</label>	<input type="password" name="password" id="password" class="text" />	</p>	<button class="cancel">Cancel</button>	<button class="submit">Sign In</button>
</div> <script src="js/index.js"></script>
</body>
</html>

A Pen by Stanley Lai - Script Codes CSS Codes

body {	background: #f9f9f9;	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#loginForm {	width: 350px;	height: 230px;	padding: 20px 20px 50px 20px;	background: #fff;	margin: 100px auto;	border: 3px solid #e8e8e8;	-webkit-border-radius: 8px;	-moz-border-radius: 8px;	border-radius: 8px;	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.1), 0px 0px 1px rgba(0,0,0,.5);	-moz-box-shadow: 0px 0px 10px rgba(0,0,0,.1), 0px 0px 1px rgba(0,0,0,.5);	box-shadow: 0px 0px 10px rgba(0,0,0,.1), 0px 0px 1px rgba(0,0,0,.5);	background-image: -o-linear-gradient(bottom, rgb(238,238,238) 0%, rgb(245,245,245) 100%);	background-image: -moz-linear-gradient(bottom, rgb(238,238,238) 0%, rgb(245,245,245) 100%);	background-image: -webkit-linear-gradient(bottom, rgb(238,238,238) 0%, rgb(245,245,245) 100%);	background-image: -ms-linear-gradient(bottom, rgb(238,238,238) 0%, rgb(245,245,245) 100%);	background-image: linear-gradient(bottom, rgb(238,238,238) 0%, rgb(245,245,245) 100%);	background-image: -webkit-gradient(	linear,	left bottom,	left top,	color-stop(0, rgb(238,238,238)),	color-stop(1, rgb(245,245,245))	);
}
#loginForm label{ font-size: 14px;
}
#loginForm input{ display: block; width: 96%; margin-top: 5px; padding: 2%; height: 20px; -webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px; border: solid 1px #ccc;
}
.cancel{ font-size: 16px; padding: 8px 45px; -webkit-border-radius: 25px; -moz-border-radius: 25px; border-radius: 25px; border: solid 1px #ddd;
}
.submit { color: #fff; font-size: 16px; text-shadow:1px 1px 2px rgba(0,0,0,0.5); padding: 8px 55px; margin-left: 30px; -webkit-border-radius: 25px; -moz-border-radius: 25px; border-radius: 25px; border: none; box-shadow: 0px -1px 1px rgba(255,255,255,0.6),0px -2px 1px rgba(51,124,214,1);
background: #55b9e8; /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIyJSIgc3RvcC1jb2xvcj0iIzU1YjllOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMzdjZDYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, #55b9e8 2%, #337cd6 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(2%,#55b9e8), color-stop(100%,#337cd6)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #55b9e8 2%,#337cd6 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #55b9e8 2%,#337cd6 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #55b9e8 2%,#337cd6 100%); /* IE10+ */
background: linear-gradient(to bottom, #55b9e8 2%,#337cd6 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#55b9e8', endColorstr='#337cd6',GradientType=0 ); /* IE6-8 */
}

A Pen by Stanley Lai - Script Codes JS Codes

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="jquery-1.9.1.min.js"><\/script>')</script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
});
</script>
A Pen by Stanley Lai - Script Codes
A Pen by Stanley Lai - Script Codes
Home Page Home
Developer Stanley Lai
Username stanleyncu
Uploaded November 14, 2022
Rating 3
Size 3,066 Kb
Views 14,168
Do you need developer help for A Pen by Stanley Lai?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Stanley Lai (stanleyncu) Script Codes
Name
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!