_blog.scss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. .blog {
  2. table, td, th {
  3. border: 1px solid black;
  4. }
  5. .blogHeader {
  6. color: #b58733;
  7. font-size: 30pt;
  8. padding-top: 10px;
  9. padding-bottom: 30px;
  10. .rss {
  11. a {
  12. font-size: 12pt;
  13. padding-left: 4px;
  14. font-weight: lighter;
  15. color: $brand-primary;
  16. vertical-align: middle;
  17. }
  18. }
  19. }
  20. /* landing page */
  21. .blog-list {
  22. max-width: 700px;
  23. ul.posts {
  24. list-style: none;
  25. padding-left: 30px;
  26. li .newBlog {
  27. background-color: #3992ab;
  28. }
  29. header {
  30. .title, .details {
  31. text-overflow: ellipsis;
  32. overflow: hidden;
  33. white-space: nowrap;
  34. }
  35. .adorner {
  36. height: 50px;
  37. width: 5px;
  38. background-color: #f2f2f2;
  39. position: absolute;
  40. left: 18px;
  41. }
  42. .title {
  43. font-size: 24px;
  44. font-weight: 400;
  45. margin: 0px;
  46. width: 100%;
  47. color: $brand-primary-darker;
  48. }
  49. .details {
  50. color: #999;
  51. font-size: 18px;
  52. .date {
  53. color: #2f2f2f;
  54. }
  55. .author {
  56. }
  57. .comment {
  58. float: right;
  59. font-size: 15px;
  60. }
  61. }
  62. }
  63. section {
  64. padding-bottom: 100px;
  65. }
  66. }
  67. }
  68. .social-container{
  69. max-width: 360px;
  70. padding-top: 40px;
  71. .container{
  72. background-color: #f2f2f2;
  73. width: 330px;
  74. height: 868px;
  75. .header{
  76. position: relative;
  77. padding-top: 24px;
  78. padding-bottom: 20px;
  79. div{
  80. float:left;
  81. color: #808080;
  82. font-size: 18px;
  83. padding-left:2px;
  84. }
  85. img{
  86. padding-left:18px;
  87. }
  88. }
  89. .feed{
  90. background-color: white;
  91. height: 730px;
  92. padding: 14px;
  93. ul {
  94. list-style-type: none;
  95. padding: 0;
  96. li{
  97. position: relative;
  98. img{
  99. top: 0px;
  100. float: left;
  101. }
  102. .name{
  103. color: black;
  104. text-overflow: ellipsis;
  105. overflow: hidden;
  106. white-space: nowrap;
  107. font-weight: bold;
  108. font-size: 110%;
  109. padding-left: 8px;
  110. }
  111. .handle{
  112. color:gray;
  113. font-weight: lighter;
  114. text-overflow: ellipsis;
  115. overflow: hidden;
  116. white-space: nowrap;
  117. font-size: 90%;
  118. padding-left: 7px;
  119. margin-top: -3px;
  120. }
  121. .date{
  122. color: gray;
  123. font-weight: bold;
  124. float: right;
  125. }
  126. .content{
  127. color: black;
  128. padding-top: 4px;
  129. padding-left: 1px;
  130. }
  131. }
  132. }
  133. }
  134. .promo{
  135. color: gray;
  136. background-color: white;
  137. height: 42px;
  138. padding-top: 10px;
  139. margin-top: 12px;
  140. text-align: center;
  141. font-size: 110%;
  142. }
  143. }
  144. }
  145. /* blog post page */
  146. .post {
  147. header {
  148. margin-bottom: 20px;
  149. .title{
  150. color: #3992ab;
  151. font-size: 30pt;
  152. }
  153. .author, .date{
  154. font-size: 14pt;
  155. color: #999;
  156. padding: 0 4px;
  157. }
  158. .date{
  159. float:right;
  160. position: relative;
  161. top:-20pt;
  162. }
  163. }
  164. section > div.content{
  165. padding: 40px 0;
  166. color: black;
  167. }
  168. footer{
  169. background-color: #FFF;
  170. margin: 100px 0;
  171. .title{
  172. color: #3992ab;
  173. font-size: 12pt;
  174. margin-top: 20px;
  175. }
  176. .author, .date{
  177. font-size: 10pt;
  178. color: #999;
  179. padding: 0 2px;
  180. }
  181. .content{
  182. margin-bottom: 20px;
  183. }
  184. }
  185. }
  186. .disqus{
  187. margin: 10px 0;
  188. }
  189. section.nextprev-posts{
  190. div{
  191. .header{
  192. padding: 10px 0;
  193. }
  194. .title{
  195. color: #3992ab;
  196. font-size: 14pt;
  197. }
  198. span{
  199. font-size: 9pt;
  200. color: #999;
  201. padding: 0 4px;
  202. }
  203. }
  204. .next , .prev{
  205. padding: 10px 15px;
  206. }
  207. }
  208. section.nextprev-controls{
  209. div{
  210. position: fixed;
  211. top:37%;
  212. .title{
  213. color: white;
  214. font-size: 12pt;
  215. }
  216. span{
  217. font-size: 9pt;
  218. color: #999;
  219. padding: 0 2px;
  220. }
  221. div{
  222. position: relative;
  223. top: 64px;
  224. left: 20px;
  225. z-index:10;
  226. width: 240px;
  227. text-overflow: ellipsis;
  228. overflow: hidden;
  229. white-space: nowrap;
  230. }
  231. }
  232. .next {
  233. right: 0px;
  234. height:90px;
  235. width: 321px;
  236. top:calc(37% - 38px);
  237. img{
  238. position: fixed;
  239. right: 0px;
  240. }
  241. }
  242. .prev{
  243. left:0px;
  244. }
  245. @media (max-width: 1800px) {
  246. .next {
  247. img{
  248. clip: rect(0px, 321px, 89px, 262px);
  249. top:37%;
  250. }
  251. }
  252. div{
  253. .title{
  254. display:none;
  255. }
  256. span{
  257. display:none;
  258. }
  259. }
  260. }
  261. @media (max-width: 1300px) {
  262. .next, .prev {
  263. img{
  264. display:none;
  265. }
  266. }
  267. }
  268. }
  269. }