You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.3 KiB

  1. /*******************************
  2. Customizer
  3. *******************************/
  4. #example.custom .accordion .title + .content {
  5. padding: 0em;
  6. }
  7. #example.custom .download.list {
  8. margin: 0em;
  9. }
  10. #example.custom .header {
  11. position: relative;
  12. }
  13. #example.custom .header .all {
  14. position: absolute;
  15. right: 1em;
  16. }
  17. #example.custom .download.list .checkbox + .content {
  18. opacity: 0.6;
  19. transition: opacity 0.3s ease;
  20. }
  21. #example.custom .download.list .checkbox + .content .header {
  22. transition: color 0.3s ease;
  23. font-weight: normal;
  24. }
  25. #example.custom .download.list .content .description {
  26. color: rgba(0, 0, 0, 0.6);
  27. font-size: 0.9em;
  28. }
  29. #example.custom .main.container > h2:first-child {
  30. margin-top: 0em;
  31. }
  32. #example.custom .download.list .checkbox.checked + .content {
  33. opacity: 1;
  34. }
  35. #example.custom .download.list .checkbox.checked + .content .header {
  36. color: #000000;
  37. font-weight: bold;
  38. }
  39. /* Element Lists */
  40. #example.custom .download.list .item > .checkbox {
  41. display: block;
  42. float: left;
  43. margin-top: 0.75em;
  44. margin-left: 0.5em;
  45. }
  46. #example.custom .download.list .item > .content {
  47. margin-left: 3em;
  48. }
  49. #example.custom .download.list .item .icon.button {
  50. opacity: 0;
  51. margin: 0.3em 0.3em 0em 0em;
  52. transition: opacity 0.5s ease;
  53. }
  54. #example.custom .download.list .item:hover .icon.button {
  55. opacity: 1;
  56. }