Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**
  2. * The feedback window inner div css.
  3. */
  4. .feedback {
  5. width: 450px;
  6. display: block;
  7. margin-left: auto;
  8. margin-right: auto;
  9. text-align: center;
  10. font-size: 22px;
  11. }
  12. /**
  13. * Style of the thank you text inside the feedback window.
  14. */
  15. .feedbackTitle {
  16. font-size: 22px;
  17. color: #087dba;
  18. }
  19. /**
  20. * Stars div css.
  21. */
  22. #stars {
  23. font-size: 30px;
  24. }
  25. /**
  26. * Star css.
  27. */
  28. #stars>a {
  29. padding-right: 4px;
  30. }
  31. /**
  32. * Mouse over a star.
  33. */
  34. .starHover {
  35. color: #087dba;
  36. }
  37. /**
  38. * Detailed feedback section text area style.
  39. */
  40. .feedbackDetails textarea {
  41. resize: vertical;
  42. min-height: 100px;
  43. }