Advertisement
lelop

Untitled

Mar 6th, 2014
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.70 KB | None | 0 0
  1. body {
  2.     padding-top: 150px;
  3.     padding-bottom: 40px;
  4.     background-color: #f5f5f5;
  5.     -webkit-touch-callout: none;
  6.     -webkit-user-select: none;
  7.     -khtml-user-select: none;
  8.     -moz-user-select: none;
  9.     -ms-user-select: none;
  10.     user-select: none;
  11. }
  12.  
  13. .form-signin {
  14.     max-width: 400px;
  15.     padding: 19px 29px 29px;
  16.     margin: 0 auto 15px;
  17.     background-color: #fff;
  18.     border: 1px solid #e5e5e5;
  19.     -webkit-border-radius: 5px;
  20.         -moz-border-radius: 5px;
  21.             border-radius: 5px;
  22.     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  23.         -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  24.             box-shadow: 0 1px 2px rgba(0,0,0,.05);
  25. }
  26. .form-signin .form-signin-heading,
  27. .form-signin .checkbox {
  28.     margin-bottom: 10px;
  29. }
  30. .form-signin input[type="text"],
  31. .form-signin input[type="password"] {
  32.     font-size: 16px;
  33.     height: auto;
  34.     padding: 7px 9px;
  35.     width: 340px;
  36. }
  37.  
  38. .form-signin > img {
  39.     padding-top: 10px;
  40. }
  41.  
  42. p {
  43.     text-align: center;
  44. }
  45.  
  46. #well {
  47.     max-width: 340px;
  48.     margin: 0 auto;
  49.     margin-bottom: 12px;
  50.     background-color: rgb(231, 231, 231);
  51.     -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07);
  52.     box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07);
  53. }
  54.  
  55. #btnRegister {
  56.     color: #333333;
  57.     cursor: pointer;
  58. }
  59.  
  60. #btnForgot {
  61.     cursor: pointer;
  62.     color: rgb(151, 151, 151);
  63. }
  64.  
  65. #btnRegisterSend, #btnForgotSend {
  66.     width: 48%;
  67.     float: right;
  68. }
  69.  
  70. #copyright {
  71.     margin: 0;
  72.     color: rgb(151, 151, 151);
  73. }
  74.  
  75. #rec-email, #username {
  76.     margin-top:10px;
  77.     margin-bottom: 15px;
  78. }
  79.  
  80. #btnRegisterCancel, #btnForgotCancel {
  81.     width: 48%;
  82. }
  83.  
  84. #r-confirm, #password {
  85.     margin-bottom: 15px;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement