Advertisement
rofelbca

style

Mar 13th, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. /* Below line is used for online Google font */
  2. @import url(http://fonts.googleapis.com/css?family=Dd Ana Pro:400,700');
  3.  
  4. body {
  5.     background: #f2f2f2;
  6.     font-family: 'Dd Ana Pro', sans-serif;
  7. }
  8.  
  9. .container {
  10.     width: 350px;
  11.     background: #fff;
  12.     margin: 80px auto;
  13.     padding: 30px;
  14.     box-shadow: 1px 1px 2px #ccc;
  15. }
  16.  
  17. .container h2 {
  18.     text-align: center;
  19.     margin-bottom: 20px;
  20. }
  21.  
  22. .container label {
  23.     display: block;
  24.     margin-bottom: 5px;
  25. }
  26.  
  27. .container input[type="text"], .container input[type="password"] {
  28.     width: 100%;
  29.     padding: 5px;
  30.     border: 1px solid #ccc;
  31.     box-sizing: border-box;
  32.     margin-bottom: 20px;
  33. }
  34.  
  35. .container input[type="button"] {
  36.     width: 100%;
  37.     padding: 5px;
  38.     background: #5cb85c;
  39.     border: 0;
  40.     cursor: pointer;
  41.     color: #fff;
  42.     transition: all 0.3s ease;
  43. }
  44.  
  45. .container input[type="button"]:hover {
  46.     background: #4cae4c;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement