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.

102 lines
1.6 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. Sidebar
  26. --------------------*/
  27. #feed .sidebar {
  28. overflow: visible;
  29. }
  30. /*-------------------
  31. Grid
  32. --------------------*/
  33. #feed .grid {
  34. height: 100%;
  35. }
  36. #feed > .grid > .column {
  37. height: 100%;
  38. }
  39. /*-------------------
  40. Inbox
  41. --------------------*/
  42. #feed .inbox.tab {
  43. background-color: #FFFFFF;
  44. }
  45. #feed .inbox.tab .item {
  46. padding-top: 1rem;
  47. padding-bottom: 1rem;
  48. }
  49. #feed .inbox.tab .item .rating {
  50. margin-top: 0.2rem;
  51. }
  52. #feed .inbox.tab .item .description {
  53. margin-left: 2em;
  54. }
  55. #feed .page {
  56. float: right;
  57. margin-top: 0.9em;
  58. }
  59. #feed .middle.column {
  60. padding: 1em 2em;
  61. }
  62. #feed .middle.column h2 {
  63. margin-top: 0em;
  64. }
  65. #feed .right.column {
  66. padding: 1em 2em;
  67. background-color: #FAFAFA;
  68. }
  69. /*******************************
  70. Responsive
  71. *******************************/
  72. @media only screen and (max-width : 1000px) {
  73. #feed .inbox .date {
  74. float: none;
  75. margin-bottom: 0.5em;
  76. }
  77. }
  78. @media only screen and (max-width : 1250px) {
  79. #feed .left.column > .menu .item {
  80. font-size: 1rem;
  81. }
  82. }