Advertisement
AlexKondov

CSS Fakebook

Jun 14th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.04 KB | None | 0 0
  1. #logo {
  2.     display: block;
  3.     margin-left: auto;
  4.     margin-right: auto;
  5. }
  6. #header {
  7.     text-align: center;
  8. }
  9. body {
  10.     background-color: #3B5997;
  11.     color: white;
  12.     font-family: "Calibri", Calibri;
  13. }
  14. section {
  15.     width: 80%;
  16.     margin-left: auto;
  17.     margin-right: auto;
  18.     padding-top: 30px;
  19. }
  20. fieldset {
  21.     border-radius: 15px;
  22.     display: inline;
  23. }
  24.     input {
  25.         border-radius: 4px;
  26.     }
  27.         .input {
  28.             width: 180px;
  29.             margin: 5px;
  30.             height: 30px;
  31.             border-radius: 4px;
  32.         }
  33.         .details {
  34.             border-radius: 4px;
  35.             height: 30px;
  36.             width: 90px;
  37.             margin: 5px;
  38.         }
  39.         #textarea {
  40.             width: 100%;
  41.             height: 78px;
  42.         }
  43.         #bday {
  44.             width: 220px;
  45.             height: 30px;
  46.         }
  47.  
  48.         #btn-clear {
  49.             background-color: lightgrey;
  50.             color: #3B5997;
  51.             height: 40px;
  52.             width: 420px;
  53.             font-size: 25px;
  54.             font-weight: bold;
  55.             border-radius: 7px;
  56.         }
  57.         #btn-submit {
  58.             background-color: lightgrey;
  59.             color: #3B5997;
  60.             width: 600px;
  61.             margin: 20px;
  62.             height: 40px;
  63.             font-size: 25px;
  64.             font-weight: bold;
  65.             border-radius: 7px;
  66.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement