No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

55 líneas
735 B

  1. .ce_form {
  2. padding: 0 190px 3rem 190px;
  3. .formbody {
  4. display: flex;
  5. justify-content: space-between;
  6. flex-wrap: wrap;
  7. }
  8. .widget {
  9. width: calc(50% - 20px);
  10. padding: 0 0 2rem 0;
  11. &.widget-textarea {
  12. width: 100%;
  13. }
  14. &.widget-submit {
  15. display: flex;
  16. justify-content: flex-end;
  17. width: 100%;
  18. }
  19. }
  20. label {
  21. display: block;
  22. padding: 0 0 0.5rem 0;
  23. }
  24. input,
  25. select,
  26. textarea {
  27. display: block;
  28. width: 100%;
  29. padding: 8px 10px;
  30. border: 1px solid $tertiary;
  31. border-radius: 20px;
  32. }
  33. input {
  34. }
  35. select {
  36. padding-top: 10px;
  37. padding-bottom: 10px;
  38. }
  39. textarea {
  40. height: 200px;
  41. }
  42. .submit {
  43. @include button();
  44. }
  45. }