Continous Integration in der Praxis Gruppenarbeit
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.

71 lines
1.2 KiB

2 years ago
  1. .page {
  2. position: relative;
  3. display: flex;
  4. flex-direction: column;
  5. }
  6. .main {
  7. flex: 1;
  8. }
  9. .sidebar {
  10. background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
  11. }
  12. .top-row {
  13. background-color: #f7f7f7;
  14. border-bottom: 1px solid #d6d5d5;
  15. justify-content: flex-end;
  16. height: 3.5rem;
  17. display: flex;
  18. align-items: center;
  19. }
  20. .top-row ::deep a, .top-row .btn-link {
  21. white-space: nowrap;
  22. margin-left: 1.5rem;
  23. }
  24. .top-row a:first-child {
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. }
  28. @media (max-width: 640.98px) {
  29. .top-row:not(.auth) {
  30. display: none;
  31. }
  32. .top-row.auth {
  33. justify-content: space-between;
  34. }
  35. .top-row a, .top-row .btn-link {
  36. margin-left: 0;
  37. }
  38. }
  39. @media (min-width: 641px) {
  40. .page {
  41. flex-direction: row;
  42. }
  43. .sidebar {
  44. width: 250px;
  45. height: 100vh;
  46. position: sticky;
  47. top: 0;
  48. }
  49. .top-row {
  50. position: sticky;
  51. top: 0;
  52. z-index: 1;
  53. }
  54. .main > div {
  55. padding-left: 2rem !important;
  56. padding-right: 1.5rem !important;
  57. }
  58. }