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.

45 lines
553B

  1. .documentation {
  2. padding: 3rem;
  3. display: flex;
  4. &__sidebar {
  5. margin-right: 2rem;
  6. ul {
  7. padding-left: 0;
  8. list-style: none;
  9. ul {
  10. padding-left: 1rem;
  11. li.active a {
  12. color: red;
  13. }
  14. }
  15. }
  16. }
  17. &__content {
  18. flex: 1;
  19. }
  20. a {
  21. color: $background;
  22. padding-bottom: 2px;
  23. border-bottom: 1px solid $background;
  24. &:hover {
  25. text-decoration: none;
  26. }
  27. &:visited {
  28. color: $background;
  29. }
  30. }
  31. iframe {
  32. width: 100%;
  33. min-height: 400px;
  34. }
  35. }