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.

93 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. }
  40. #feed .left.column > .menu {
  41. height: 100%;
  42. }
  43. /*-------------------
  44. Inbox
  45. --------------------*/
  46. #feed .inbox {
  47. background-color: #FFFFFF;
  48. }
  49. #feed .inbox .item {
  50. padding-top: 1rem;
  51. padding-bottom: 1rem;
  52. }
  53. #feed .middle.column {
  54. padding: 1em 2em;
  55. }
  56. #feed .right.column {
  57. padding: 1em 2em;
  58. background-color: #FFFFFF;
  59. }
  60. /*******************************
  61. Responsive
  62. *******************************/
  63. @media only screen and (max-width : 800px) {
  64. #feed .left.column {
  65. min-width: 200px;
  66. }
  67. #feed .inbox .date {
  68. float: none;
  69. margin-top: 0.5em;
  70. }
  71. }
  72. @media only screen and (max-width : 1200px) {
  73. #feed .left.column > .menu .item {
  74. font-size: 1rem;
  75. }
  76. }