App.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. animation: App-logo-spin infinite 20s linear;
  6. height: 40vmin;
  7. }
  8. .App-header {
  9. background-color: #282c34;
  10. min-height: 100vh;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: center;
  15. font-size: calc(10px + 2vmin);
  16. color: white;
  17. }
  18. .App-link {
  19. color: #61dafb;
  20. }
  21. @keyframes App-logo-spin {
  22. from {
  23. transform: rotate(0deg);
  24. }
  25. to {
  26. transform: rotate(360deg);
  27. }
  28. }
  29. .pointer {
  30. cursor: pointer;
  31. }
  32. .center-children {
  33. display: flex;
  34. justify-content: center;
  35. }
  36. .flex-end {
  37. display: flex;
  38. justify-content: flex-end;
  39. }
  40. .flex-center {
  41. display: flex;
  42. justify-content: center;
  43. }
  44. .flex {
  45. display: flex;
  46. }
  47. .miniShadow {
  48. box-shadow: 0px 3px 1px 1px #eee;
  49. }
  50. nav .divider{
  51. width: 1px;
  52. height: 38px;
  53. margin: 13px 5px;
  54. background: transparent;
  55. border-left: 1px solid #e0e0e0;
  56. }
  57. .Navbar a {
  58. color: white;
  59. }
  60. .sidenav a {
  61. color: rgba(0,0,0,0.87);
  62. height: auto;
  63. font-weight: 500;
  64. }
  65. .Link {
  66. width: auto !important;
  67. height: auto !important;
  68. }
  69. header .nav-text span[class*=MuiButton-label],
  70. header .nav-text span[class*=jss] {
  71. color: white !important;
  72. }
  73. .MuiIconButton-root-41 {
  74. padding: 0 12px !important;
  75. }
  76. .NothingHere {
  77. width: 100%;
  78. font-size: 24px;
  79. font-weight: bold;
  80. color: #acafa1;
  81. text-align: center;
  82. }
  83. .FirstScreenTopNav {
  84. float: right;
  85. min-width: 200px;
  86. color:white;
  87. top: 40px;
  88. }
  89. .stretch-background {
  90. background-size: 100% 100% !important;
  91. }
  92. .shades {
  93. box-shadow: 0px 0px 5px 5px #cecece;
  94. }
  95. .p-m {
  96. padding: 10px;
  97. }
  98. .p-s {
  99. padding: 5px;
  100. }
  101. .p-l {
  102. padding: 20px;
  103. }
  104. .p-xl {
  105. padding: 40px;
  106. }
  107. .no-padding {
  108. padding: 0 !important;
  109. }