Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

combination.css 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* ------- */
  2. /* Default */
  3. /* ------- */
  4. /* All toolbar */
  5. .toolbar {
  6. top: 0;
  7. box-sizing: border-box;
  8. padding-top: 0;
  9. }
  10. .bottom-bar {
  11. bottom: 0;
  12. box-sizing: border-box;
  13. padding-bottom: 0;
  14. }
  15. /* All page__background with a ordinal toolbar */
  16. .toolbar+.page__background {
  17. top: var(--toolbar-height);
  18. }
  19. /* All page__content without toolbars */
  20. .page__content {
  21. top: 0;
  22. padding-top: 0;
  23. bottom: 0;
  24. }
  25. /* All page__content with a toolbar */
  26. .toolbar+.page__background+.page__content {
  27. top: var(--toolbar-height);
  28. padding-top: 0;
  29. }
  30. /* All page__content with a bottom-bar */
  31. .page-with-bottom-toolbar > .page__content {
  32. bottom: 44px;
  33. }
  34. /* -------- */
  35. /* Material */
  36. /* -------- */
  37. /* All page__background with a material toolbar */
  38. .toolbar.toolbar--material+.page__background {
  39. top: var(--toolbar-material-height);
  40. }
  41. /* All page__content with a material toolbar */
  42. .toolbar.toolbar--material+.page__background+.page__content {
  43. top: var(--toolbar-material-height);
  44. padding-top: 0;
  45. }
  46. /* -------- */
  47. /* Others */
  48. /* -------- */
  49. /* All page__background with a transparent toolbar */
  50. .toolbar.toolbar--transparent+.page__background {
  51. top: 0;
  52. }
  53. /* All page__content with a transparent cover-content toolbar and its direct descendant page_content */
  54. .toolbar.toolbar--transparent.toolbar--cover-content+.page__background+.page__content,
  55. .toolbar.toolbar--transparent.toolbar--cover-content+.page__background+.page__content .page_content {
  56. top: 0;
  57. padding-top: var(--toolbar-height);
  58. }
  59. /* All page__content with a material transparent cover-content toolbar and its direct descendant page_content */
  60. .toolbar.toolbar--material.toolbar--transparent.toolbar--cover-content+.page__background+.page__content,
  61. .toolbar.toolbar--material.toolbar--transparent.toolbar--cover-content+.page__background+.page__content .page_content {
  62. top: 0;
  63. padding-top: var(--toolbar-material-height);
  64. }
  65. /* -------- */
  66. /* Tabbar */
  67. /* -------- */
  68. /* All top tabbar */
  69. .tabbar--top {
  70. padding-top: 0;
  71. }
  72. /* All bottom tabbar */
  73. .tabbar:not(.tabbar--top) {
  74. padding-bottom: 0;
  75. }