Advertisement
Ayda5

Boogle_login_AP CSS V3

Aug 19th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.53 KB | None | 0 0
  1. .body {
  2.     font-family: "Lucida Sans Regular", Arial, sans-serif;
  3.     background: white
  4. }
  5.  
  6. .container {
  7.     width: 450px ;
  8.     margin-left: auto ;
  9.     margin-right: auto ;
  10.     position:absolute;
  11.     top: 0; left: 0; bottom: 0; right: 0;
  12. }
  13.  
  14. .logo {
  15.     width: 200px;
  16.     height: 150px;
  17.     margin: 0 auto 10px;
  18.     display: block;
  19. }
  20.  
  21. .login-title {
  22.     color: #52525e;
  23.     font-size: 32px;
  24.     display: block;
  25.     text-align: center
  26. }
  27.  
  28. .signin {
  29.     width: 350px;
  30.     margin-right: auto;  
  31.     margin-left: auto;
  32. }
  33.  
  34. .signin-text {
  35.     text-align: center;
  36. }
  37.  
  38. .form {
  39.     max-width: 330px;
  40.     padding: 15px;
  41.     margin: 0 auto;
  42. }
  43.  
  44. .account-block {
  45.     margin-top: 20px;
  46.     padding: 40px 0px 20px 0px;
  47.     background-color: #f7f7f7;
  48.     -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  49.     -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  50.     box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  51. }
  52.  
  53. .profile-image {
  54.     display: block;
  55.     margin-right: auto
  56.     margin-left: auto;
  57. }
  58.  
  59. .submit-signin {
  60.     display: block;
  61.     width: 100%;
  62.     font-weight: 400;
  63.     text-align: center;
  64.     color: #fff;
  65.     background-color: #337ab7;
  66.     border-color: #2e6da4;
  67.     padding: 10px 16px;
  68.     font-size: 18px;
  69.     line-height: 1.3333333;
  70.     border-radius: 6px;
  71.     border: 1px solid transparent;
  72. }
  73.  
  74. .new-account {
  75.     text-align: center;
  76.     display: block;
  77.     margin-top: 10px;
  78. }
  79.  
  80. .login-text {
  81.     color: #52525e;
  82.     font-size: 18px;
  83.     display: block;
  84. }
  85.  
  86. .help {
  87.     color: #52525e;
  88.     font-size: 18px;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement