Sprankelprachtig aan/afmeldsysteem

void.scss 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. body.void {
  2. padding-top: 40px;
  3. padding-bottom: 40px;
  4. background-color: #eee;
  5. }
  6. .central-form {
  7. max-width: 330px;
  8. padding: 15px;
  9. margin: 0 auto;
  10. }
  11. .central-form .central-form-heading,
  12. .central-form .checkbox {
  13. margin-bottom: 10px;
  14. }
  15. .central-form .checkbox {
  16. font-weight: normal;
  17. }
  18. .central-form .form-control {
  19. position: relative;
  20. height: auto;
  21. -webkit-box-sizing: border-box;
  22. -moz-box-sizing: border-box;
  23. box-sizing: border-box;
  24. padding: 10px;
  25. font-size: 16px;
  26. }
  27. .central-form .form-control:focus {
  28. z-index: 2;
  29. }
  30. .central-form input[type="email"].input-top {
  31. margin-bottom: -1px;
  32. border-bottom-right-radius: 0;
  33. border-bottom-left-radius: 0;
  34. }
  35. .central-form .input-top {
  36. border-top-left-radius: 4px;
  37. border-top-right-radius: 4px;
  38. border-bottom-left-radius: 0;
  39. border-bottom-right-radius: 0;
  40. }
  41. .central-form .input-middle {
  42. border-top-left-radius: 0;
  43. border-top-right-radius: 0;
  44. border-bottom-left-radius: 4px;
  45. border-bottom-right-radius: 4px;
  46. }
  47. .central-form .input-bottom {
  48. border-top-left-radius: 0;
  49. border-top-right-radius: 0;
  50. border-bottom-left-radius: 4px;
  51. border-bottom-right-radius: 4px;
  52. }
  53. .central-form .input-only {
  54. border-radius: 4px;
  55. padding-bottom: 10px;
  56. }
  57. .central-form input[type="password"].input-top {
  58. margin-bottom: 10px;
  59. border-top-left-radius: 0;
  60. border-top-right-radius: 0;
  61. }