Advertisement
BenjaminSwanzy

signup.css

Feb 18th, 2020
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. *{
  2. margin:0;
  3. padding: :0;
  4. box-sizing: border-box;
  5. font-family:arial;
  6. }
  7.  
  8. header{
  9. height: 80px;
  10. width: 100%;
  11. background-color:#fff;
  12. border-bottom:1px solid rgba(0,0,0,.12);
  13. }
  14.  
  15. header ul li{
  16. display: inline-block;
  17. float: right;
  18. padding-top: 30px;
  19. }
  20.  
  21. header ul li a{
  22. text-decoration: none;
  23. color: #2e3e48;
  24. padding-right: 20px;
  25. }
  26.  
  27. .for-event{
  28. color: #00a2c7!important;
  29. font-weight: 600;
  30. }
  31.  
  32.  
  33. .form-part{
  34. height: 600px;
  35. width: 100%;
  36. background-color:#fafafa;
  37. }
  38.  
  39. .form-part-main{
  40. height: 550px;
  41. width:50%;
  42. border:1px solid #fafafa;
  43. margin-left: 300px;
  44. /*margin-top: 50px; */
  45. }
  46.  
  47. form{
  48. height: 500px;
  49. width: 50%;
  50. background-color: #fff;
  51. margin-top: 50px;
  52. margin-left: 200px;
  53. border:1px solid #e0e0e0;
  54. }
  55.  
  56. form h1{
  57. padding-left: 17px;
  58. }
  59.  
  60. form p{
  61. padding-left: 17px;
  62. }
  63.  
  64. form p a{
  65. text-decoration: none;
  66. }
  67.  
  68. form label{
  69. padding-top:5px;
  70. padding-left: 17px;
  71. }
  72.  
  73.  
  74. form input{
  75. height: 35px;
  76. margin-left: 17px;
  77. width: 90%;
  78. }
  79.  
  80. form button{
  81. height: 40px;
  82. width: 20%;
  83. background-color:#2148f4;
  84. border:none;
  85. color: #fff;
  86. margin-left: 17px;
  87. border-radius: 5px;
  88. }
  89.  
  90. form button hr{
  91. color: blue;
  92. }
  93.  
  94. form button:hover{
  95. background-color:
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement