Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

90 linhas
1.3KB

  1. head {
  2. background: blue;
  3. }
  4. header {
  5. background: linear-gradient(48deg, #8c3cee, #8c3cee, #2f85f6);
  6. }
  7. .spacer {
  8. flex-grow: 1;
  9. }
  10. main {
  11. display: flex;
  12. flex-direction: column;
  13. flex-wrap: wrap;
  14. justify-content: flex-start;
  15. }
  16. .tab-content {
  17. padding-top: 1%;
  18. padding-left: 1%;
  19. padding-bottom: 1%;
  20. display: flex;
  21. flex-direction: column;
  22. flex-wrap: wrap;
  23. justify-content: flex-start;
  24. }
  25. [hidden] {
  26. display: none;
  27. }
  28. nav {
  29. padding-top: 1em;
  30. padding-left: 1em;
  31. padding-right: 1em;
  32. color: white;
  33. }
  34. .tab-row {
  35. justify-content: space-between;
  36. }
  37. .row {
  38. display: flex;
  39. flex-wrap: nowrap;
  40. flex-direction: row;
  41. align-items: flex-start;
  42. }
  43. .col {
  44. display: flex;
  45. flex-wrap: wrap;
  46. flex-direction: column;
  47. align-items: flex-start;
  48. }
  49. .tab {
  50. padding-top: 0.5em;
  51. padding-left: 1em;
  52. padding-right: 1em;
  53. }
  54. .active {
  55. color: black;
  56. background-color: white;
  57. }
  58. .inactive {
  59. color: white;
  60. background-color: #74a9a9;
  61. }
  62. html,
  63. body {
  64. margin: 0px;
  65. }
  66. .dashboard {
  67. padding: 5px;
  68. flex-flow: row;
  69. margin: 0;
  70. list-style: none;
  71. display: -moz-flex;
  72. display: flex;
  73. justify-content: space-evenly;
  74. flex-wrap: wrap;
  75. align-items: center;
  76. }