Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.45 KB | None | 0 0
  1.  
  2. h1{
  3.     text-align: center;
  4. }
  5. input{
  6.     display: block;
  7.     border-radius: 8px;
  8.     background: rgb(237,237,237);
  9.     outline: none;
  10. }
  11. .form-container{
  12.     margin-top: 100px;
  13.     width: 100%;
  14.     background-color:rgb(52,73,94);
  15.     border-radius: 8px;
  16.     padding: 10px 0%;
  17.     padding-bottom: 25px;
  18.     color: white;
  19.     margin-left: auto;
  20.     margin-right: auto;
  21. }
  22. .form-container p.error {
  23.     color: red;
  24. }
  25. .input{
  26.     height: 55px;
  27.     width: 80%;
  28.     color: rgb(52,73,94);
  29.     padding-left: 20px;
  30.     font-size: 20px;
  31.     border: none;
  32.     margin-left: auto;
  33.     margin-right: auto;
  34. }  
  35.  
  36. .submit{
  37.     width: 85%;
  38.     height: 55px;
  39.     background: rgb(26,188,156);
  40.     border: none;
  41.     outline: none;
  42.     box-shadow: none;
  43.     font-size: 20px;
  44.     color:white;
  45.     margin-left: auto;
  46.     margin-right: auto;
  47. }
  48. .submit:hover{
  49.     background: rgb(15,177,144);
  50. }
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58. @media screen and (min-width: 785px) {
  59.  
  60.     .form-container {
  61.         width: 655px;
  62.         background-color: rgb(52, 73, 94);
  63.         border-radius: 8px;
  64.         padding: 10px 40px;
  65.         padding-bottom: 25px;
  66.     }
  67.  
  68.     .input {
  69.         height: 55px;
  70.         width: 555px;
  71.         color: rgb(52, 73, 94);
  72.         padding-left: 20px;
  73.         font-size: 20px;
  74.         border: none;
  75.         margin-left: auto;
  76.         margin-right: auto;
  77.     }
  78.  
  79.     .submit {
  80.         width: 575px;
  81.         height: 55px;
  82.         background: rgb(26, 188, 156);
  83.         border: none;
  84.         outline: none;
  85.         box-shadow: none;
  86.         font-size: 20px;
  87.         color: white;
  88.         margin-left: auto;
  89.         margin-right: auto;
  90.     }
  91.  
  92.     .submit:hover {
  93.         background: rgb(15, 177, 144);
  94.     }
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement