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.
 
 
 
 
 
 

69 lines
1.2 KiB

  1. $brand-blue: #161e2d;
  2. $blue-grey: #949599;
  3. ion-content {
  4. --background: transparent;
  5. background-color: $brand-blue;
  6. }
  7. .content-container {
  8. margin-top: 65px;
  9. }
  10. .action-buttons {
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. padding: 15px 5% 15px 10px;
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. z-index: 1;
  20. background-color: #161e2d;
  21. box-shadow: 0px 0px 5px black;
  22. button {
  23. background-color: transparent;
  24. border: none;
  25. }
  26. .nav button {
  27. color: $blue-grey;
  28. display: flex;
  29. align-items: center;
  30. ion-icon {
  31. font-size: 24px;
  32. }
  33. span {
  34. margin-left: 5px;
  35. font-size: 0.9rem;
  36. font-size: 14px;
  37. }
  38. }
  39. .action {
  40. display: flex;
  41. }
  42. .action button {
  43. width: 35px;
  44. height: 35px;
  45. border: 1px solid $blue-grey;
  46. background-color: rgba($blue-grey, 0.1);
  47. border-radius: 50%;
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. margin-left: 15px;
  52. ion-icon {
  53. color: $blue-grey;
  54. font-size: 17px;
  55. }
  56. }
  57. }