Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Below line is used for online Google font */
- @import url(http://fonts.googleapis.com/css?family=Dd Ana Pro:400,700');
- body {
- background: #f2f2f2;
- font-family: 'Dd Ana Pro', sans-serif;
- }
- .container {
- width: 350px;
- background: #fff;
- margin: 80px auto;
- padding: 30px;
- box-shadow: 1px 1px 2px #ccc;
- }
- .container h2 {
- text-align: center;
- margin-bottom: 20px;
- }
- .container label {
- display: block;
- margin-bottom: 5px;
- }
- .container input[type="text"], .container input[type="password"] {
- width: 100%;
- padding: 5px;
- border: 1px solid #ccc;
- box-sizing: border-box;
- margin-bottom: 20px;
- }
- .container input[type="button"] {
- width: 100%;
- padding: 5px;
- background: #5cb85c;
- border: 0;
- cursor: pointer;
- color: #fff;
- transition: all 0.3s ease;
- }
- .container input[type="button"]:hover {
- background: #4cae4c;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement