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.

90 lines
1.4 KiB

  1. /*******************************
  2. Global
  3. *******************************/
  4. html,
  5. body {
  6. font-size: 15px;
  7. height: 100%;
  8. }
  9. body {
  10. font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  11. background: #FFFFFF;
  12. margin: 0px;
  13. padding: 0px;
  14. color: #555555;
  15. text-rendering: optimizeLegibility;
  16. min-width: 320px;
  17. }
  18. .ui.header {
  19. font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  20. }
  21. /*******************************
  22. Global
  23. *******************************/
  24. /*-------------------
  25. Grid
  26. --------------------*/
  27. #feed .grid {
  28. height: 100%;
  29. }
  30. #feed > .grid > .column {
  31. height: 100%;
  32. }
  33. /*-------------------
  34. Menu
  35. --------------------*/
  36. #feed .left.column {
  37. background-color: #333333;
  38. min-width: 260px;
  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 : 1000px) {
  64. #feed .inbox .date {
  65. float: none;
  66. margin-bottom: 0.5em;
  67. }
  68. }
  69. @media only screen and (max-width : 1250px) {
  70. #feed .left.column > .menu .item {
  71. font-size: 1rem;
  72. }
  73. }