Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

78 Zeilen
1.6 KiB

  1. .ce_form {
  2. .widget {
  3. input.text,
  4. textarea {
  5. width: 100%;
  6. font-size: size(15);
  7. background: transparent;
  8. border: none;
  9. border-bottom: 1px solid #fff;
  10. color: #fff;
  11. margin-bottom: 15px;
  12. &::placeholder {
  13. color: inherit;
  14. }
  15. }
  16. textarea {
  17. border: 1px solid #fff;
  18. margin-top: 15px;
  19. }
  20. .checkbox_container {
  21. margin-bottom: 15px;
  22. input {
  23. padding: 0;
  24. height: initial;
  25. width: initial;
  26. margin-bottom: 0;
  27. display: none;
  28. cursor: pointer;
  29. &:checked + label:after {
  30. content: '';
  31. display: block;
  32. position: absolute;
  33. top: 1px;
  34. left: 7px;
  35. width: 5px;
  36. height: 13px;
  37. border: solid $primary;
  38. border-width: 0 2px 2px 0;
  39. transform: rotate(45deg);
  40. }
  41. }
  42. label {
  43. position: relative;
  44. cursor: pointer;
  45. font-size: size(13);
  46. line-height: size(23);
  47. &:before {
  48. content: '';
  49. -webkit-appearance: none;
  50. background-color: transparent;
  51. border: 1px solid #ffff;
  52. padding: 8px;
  53. display: block;
  54. width: 18px;
  55. height: 18px;
  56. position: relative;
  57. vertical-align: middle;
  58. cursor: pointer;
  59. margin-right: 10px;
  60. margin-bottom: 20px;
  61. float: left;
  62. }
  63. }
  64. }
  65. button.submit {
  66. @include button();
  67. }
  68. }
  69. }