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.

91 lines
1.5 KiB

  1. /*******************************
  2. Global
  3. *******************************/
  4. html,
  5. body {
  6. font-size: 15px;
  7. height: 100%;
  8. overflow-x: hidden;
  9. }
  10. body {
  11. font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  12. background: #FFFFFF;
  13. margin: 0px;
  14. padding: 0px;
  15. color: #555555;
  16. text-rendering: optimizeLegibility;
  17. min-width: 320px;
  18. }
  19. .ui.header {
  20. font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  21. }
  22. /*******************************
  23. Global
  24. *******************************/
  25. /*-------------------
  26. Grid
  27. --------------------*/
  28. #feed .grid {
  29. height: 100%;
  30. }
  31. #feed > .grid > .column {
  32. height: 100%;
  33. }
  34. /*-------------------
  35. Menu
  36. --------------------*/
  37. #feed .left.column {
  38. background-color: #333333;
  39. min-width: 260px;
  40. }
  41. #feed .left.column > .menu {
  42. height: 100%;
  43. }
  44. /*-------------------
  45. Inbox
  46. --------------------*/
  47. #feed .inbox {
  48. background-color: #FFFFFF;
  49. }
  50. #feed .inbox .item {
  51. padding-top: 1rem;
  52. padding-bottom: 1rem;
  53. }
  54. #feed .middle.column {
  55. padding: 1em 2em;
  56. }
  57. #feed .right.column {
  58. padding: 1em 2em;
  59. background-color: #FFFFFF;
  60. }
  61. /*******************************
  62. Responsive
  63. *******************************/
  64. @media only screen and (max-width : 1000px) {
  65. #feed .inbox .date {
  66. float: none;
  67. margin-bottom: 0.5em;
  68. }
  69. }
  70. @media only screen and (max-width : 1250px) {
  71. #feed .left.column > .menu .item {
  72. font-size: 1rem;
  73. }
  74. }