Advertisement
repente

Untitled

May 18th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. main {
  2. margin-top: 50px;
  3. display: flex;
  4. flex-direction: column;
  5. }
  6.  
  7. .input-label {
  8. display: block;
  9. margin-top:10px;
  10. }
  11. .input {
  12. font-size: 1.2em;
  13. width: 100%;
  14. }
  15. select {
  16. width: 100%;
  17. height: 30px;
  18. font-size: 1.2em;
  19. }
  20. .textarea {
  21. width: 100%;
  22. display: block;
  23. height: 50px;
  24. }
  25. .button {
  26. margin-top:10px;
  27. width: 100%;
  28. display: block;
  29. height: 50px;
  30. font-size: 1.2em;
  31. }
  32.  
  33. .navigation-menu {
  34. top:0;
  35. position: fixed;
  36. overflow: hidden;
  37. border-bottom: 1px solid #ccc;
  38. width: 100%;
  39. padding-top: 0.8rem;
  40. padding-bottom: 0.8rem;
  41. background: white;
  42. display: flex;
  43. justify-content: space-evenly;
  44. }
  45.  
  46. .btn {
  47. width: 100%;
  48. height: 50px;
  49. background-color: #52A3E2;
  50. border: 1px solid white;
  51. border-radius: 2.5px;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. font-size: 1.3em;
  56. color:white;
  57. }
  58.  
  59. .btn:hover {
  60. background-color: #95C5FF;
  61. cursor: pointer;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement