Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.82 KB | None | 0 0
  1. body {
  2.     font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. }
  4.  
  5. #Box, #Title-block, #Sub-title, #Sign-in-box,
  6. #User-icon-picture, #Sign-in-button, #Create-account-text {
  7.     margin-left: auto;
  8.     margin-right: auto;
  9. }
  10.  
  11. #Logo-image, #User-icon-picture, .Input-box, #Input-box-text,
  12. #Input-box-password-text, #Sign-in-box, #Sign-in-button, #Create-account, #Create-account-text  {
  13.     display: block;
  14. }
  15.  
  16. #Box {
  17.     width: 500px;
  18.     margin-top: 20px;
  19.  
  20. }
  21.  
  22. #Logo {
  23.     width: 200px;
  24.     position: relative;
  25.     margin: 0 auto;
  26. }
  27.  
  28. #Logo-image {
  29.     width: 50%;
  30.     position: relative;
  31.     margin: 0 auto;
  32. }
  33.  
  34. #Title-block {
  35.     width: 450px;
  36.     margin-top: 40px;
  37.     text-align: center;
  38.     color: #505050;
  39. }
  40.  
  41. #Title-text {
  42.     font-size: 36px;
  43. }
  44.  
  45. #Sub-title {
  46.     width: 350px;
  47.     margin-top: 40px;
  48.     text-align: center;
  49.     font-size: 20px;
  50.     margin-bottom: 15px;
  51.     color: #505050
  52. }
  53.  
  54. #Sign-in-box{
  55.     width: 350px;
  56.     margin-top: 15px;
  57.     padding-top: 20px;
  58.     padding-bottom: 20px;
  59.     background-color: #F0F0F0;
  60.     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
  61. }
  62.  
  63. #User-icon-picture {
  64.     height: 100px;
  65.     width: 100px;
  66.     margin-bottom: 100px;
  67.     margin-top: 20px;
  68. }
  69.  
  70. .Input-box {
  71.     margin: 0 auto;
  72.     width: 350px;
  73. }
  74.  
  75. #Input-box-text {
  76.     border-radius: 4px;
  77.     margin: 0 auto;
  78.     margin-bottom: 5px;
  79. }
  80.  
  81. #Input-box-password-text {
  82.     border-radius: 4px;
  83.     margin: 0 auto;
  84. }
  85.  
  86. #Sign-in-box {
  87.     margin: 0 auto;
  88. }
  89.  
  90. #Sign-in-button {
  91.     border-radius: 4px;
  92.     margin-top: 5px;
  93.     cursor: pointer;
  94.     background-color: #4682B4;
  95.     color: white;
  96. }
  97.  
  98. #Create-account {
  99.     margin: 0 auto;
  100.     width: 350px;
  101. }
  102.  
  103. #Create-account-text {
  104.     margin-top: 20px;
  105.     margin-bottom: 20px;
  106.     text-align: center;
  107.     color: #4169E1;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement