Backend.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @font-face {
  2. font-family: 'Material Icons';
  3. font-style: normal;
  4. font-weight: 10;
  5. src: url('../Fonts/MaterialIcons-Regular.ttf');
  6. src: local('Material Icons'), local('MaterialIcons-Regular'),
  7. url('../Fonts/MaterialIcons-Regular.ttf') format('truetype'),
  8. }
  9. .material-icons {
  10. font-family: 'Material Icons';
  11. font-weight: normal;
  12. font-style: normal;
  13. font-size: 16px; /* Preferred icon size */
  14. display: inline-block;
  15. line-height: 1;
  16. text-transform: none;
  17. letter-spacing: normal;
  18. word-wrap: normal;
  19. white-space: nowrap;
  20. direction: ltr;
  21. /* Support for all WebKit browsers. */
  22. -webkit-font-smoothing: antialiased;
  23. /* Support for Safari and Chrome. */
  24. text-rendering: optimizeLegibility;
  25. /* Support for Firefox. */
  26. -moz-osx-font-smoothing: grayscale;
  27. /* Support for IE. */
  28. font-feature-settings: 'liga';
  29. }
  30. .Red {
  31. background-color: red;
  32. color: white;
  33. }
  34. .Orange {
  35. background-color: orange;
  36. color: white;
  37. }
  38. .Blue {
  39. background-color: blue;
  40. color: white;
  41. }
  42. .DarkBlue {
  43. background-color: darkblue;
  44. color: white;
  45. }
  46. .Black {
  47. background-color: black;
  48. color: white;
  49. }
  50. .pagination {
  51. margin-top: 5px;
  52. }
  53. .main {
  54. background-color: gray;
  55. padding-top: 5px;
  56. }
  57. li > span.pageNumbers {
  58. line-height: 1.7;
  59. }
  60. ul>li {
  61. list-style-type: none;
  62. display: inline-block;
  63. }