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.

114 lines
1.6 KiB

  1. @import url(https://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic);
  2. @import "font-awesome-sprockets";
  3. @import "font-awesome";
  4. body {
  5. font-family: 'Noto Sans', sans-serif;
  6. background: #E0E3DA;
  7. font-size: 13px;
  8. line-height: 18px;
  9. }
  10. .container {
  11. width: 800px;
  12. margin: 0 auto;
  13. }
  14. .card {
  15. padding-top: 20px;
  16. .name {
  17. font-size: 24px;
  18. line-height: 18px * 1.5;
  19. small {
  20. display: block;
  21. font-size: 14px;
  22. color: #566270;
  23. }
  24. }
  25. .bio {
  26. }
  27. .counter {
  28. display: block;
  29. float: left;
  30. width: 100px;
  31. text-align: center;
  32. border: 1px solid #A593E0;
  33. color: #A593E0;
  34. border-radius: 5px;
  35. padding: 3px 0;
  36. margin-right: 3px;
  37. .num {
  38. display: block;
  39. font-size: 24px;
  40. }
  41. }
  42. }
  43. .activity-stream {
  44. clear: both;
  45. .entry {
  46. padding: 10px;
  47. border-bottom: 1px solid #E0E3DA;
  48. background: #FFFFF3;
  49. &:first-child {
  50. border-radius: 5px 5px 0 0;
  51. }
  52. &:last-child {
  53. border-bottom: 0;
  54. border-radius: 0 0 5px 5px;
  55. }
  56. }
  57. .header {
  58. margin-bottom: 10px;
  59. }
  60. .name {
  61. text-decoration: none;
  62. color: #566270;
  63. strong {
  64. color: #000;
  65. }
  66. &:hover {
  67. strong {
  68. text-decoration: underline;
  69. }
  70. }
  71. }
  72. .content {
  73. font-size: 16px;
  74. }
  75. .time {
  76. text-decoration: none;
  77. color: #566270;
  78. &:hover {
  79. text-decoration: underline;
  80. }
  81. }
  82. .counters {
  83. margin-top: 15px;
  84. color: #566270;
  85. cursor: default;
  86. .counter {
  87. display: inline-block;
  88. margin-right: 10px;
  89. }
  90. }
  91. }