_components.topbar.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .c-topbar__label {
  2. @include inuit-font-size(12px);
  3. display: inline-block;
  4. margin-left: $spacing-unit-tiny;
  5. vertical-align: middle;
  6. text-transform: uppercase;
  7. }
  8. .c-topbar {
  9. .hamburger, .buttons {
  10. float: left;
  11. }
  12. #js-sidebar-toggle {
  13. margin-right: 5px;
  14. padding-top: 4px;
  15. }
  16. span.hamburger-box {
  17. width: 40px;
  18. height: 30px;
  19. padding-left: 10px;
  20. }
  21. .c-topbar__buttons {
  22. @include mq($from: tablet) {
  23. width: calc(100% - #{$right-sidebar-width} - 20px)
  24. }
  25. }
  26. .topbar-right-button {
  27. display: block;
  28. float: right;
  29. padding: 0 1rem;
  30. img {
  31. width: 20px;
  32. margin-top: 4px;
  33. }
  34. }
  35. }
  36. // Download buttons
  37. .download-buttons {
  38. display: none;
  39. position: absolute;
  40. button {
  41. min-width: 100px !important;
  42. border: 1px white solid !important;
  43. border-radius: 0 !important;
  44. }
  45. }
  46. .download-buttons-dropdown {
  47. position: relative;
  48. display: inline-block;
  49. &:hover div.download-buttons {
  50. display: block;
  51. }
  52. img {
  53. height: 18px;
  54. }
  55. }