Advertisement
Guest User

Untitled

a guest
Mar 25th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.50 KB | None | 0 0
  1. * {
  2. -webkit-box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. box-sizing: border-box;
  5. }
  6.  
  7. a {
  8. text-decoration: none;
  9. color: rgb(142, 142, 214);
  10. }
  11. a:hover,
  12. a:focus {
  13. text-decoration: underline;
  14. }
  15.  
  16.  
  17. .comments {
  18. padding: 50px 0 0;
  19. }
  20.  
  21. .banner {
  22. background-position: center;
  23. background-size: cover;
  24. height: 300px;
  25. width: 100%;
  26. }
  27.  
  28. pre {
  29. padding: 15px 15px 15px 15px;
  30. font-size: 90%;
  31. box-shadow: 2px 2px 2px #888;
  32. }
  33.  
  34. .sidebar {
  35. position: fixed;
  36. top: 0;
  37. bottom: 0;
  38. width: 25%;
  39. margin-left: -25%;
  40. }
  41.  
  42. .avatar {
  43. width: 100px;
  44. height: 100px;
  45. border-radius: 50px;
  46. margin-left: 1em;
  47. border: 3px solid #fff;
  48. z-index: 500;
  49. background-color: #fff;
  50. -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3);
  51. -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3);
  52. box-shadow: 0 1px 1px rgba(0,0,0,0.3);
  53. }
  54.  
  55. .cover-img {
  56. position: absolute;
  57. width: 100%;
  58. height: 100%;
  59. top: 0;
  60. left: 0;
  61. background-position: center;
  62. background-repeat: no-repeat;
  63. -webkit-background-size: cover;
  64. -moz-background-size: cover;
  65. -o-background-size: cover;
  66. background-size: cover;
  67. -webkit-box-shadow: inset -1px 0 0 rgba(0,0,0,0.3);
  68. -moz-box-shadow: inset -1px 0 0 rgba(0,0,0,0.3);
  69. box-shadow: inset -1px 0 0 rgba(0,0,0,0.3);
  70. }
  71.  
  72. .cover-body {
  73. position: absolute;
  74. bottom: 0;
  75. max-width: 100%;
  76. padding-bottom: 0;
  77. padding-top: 100px;
  78. background-image: linear-gradient(to top,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.3) 70%,rgba(0,0,0,0) 100%);
  79. }
  80.  
  81. .brand-title,
  82. .brand-tagline {
  83. margin: 0;
  84. }
  85. .brand-title {
  86. text-transform: uppercase;
  87. }
  88.  
  89. .article-info {
  90. padding-top: 15px;
  91. clear: right;
  92. font-weight: 300;
  93. color: rgb(0, 0, 0);
  94. word-wrap: break-word;
  95. }
  96.  
  97. .header-article {
  98. width: 767px;
  99. max-width: 100%;
  100. text-align: right;
  101. padding-top: 4em;
  102. }
  103.  
  104. .header-article h5 {
  105. clear: both;
  106. }
  107.  
  108. .header {
  109. text-align: center;
  110. width: 767px;
  111. max-width: 100%;
  112. }
  113.  
  114. .brand-main a {
  115. text-transform: uppercase;
  116. text-decoration: none;
  117. margin-left: 15px;
  118. font-size: 25px;
  119. color: #fff;
  120. border-bottom: 1px solid rgba(255,255,255,0.3);
  121. text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  122. font-family: "freight-sans-pro","Myriad Pro","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
  123. }
  124.  
  125. .tagline {
  126. margin-top: -15px;
  127. line-height: 15px;
  128. margin-left: 15px;
  129. font-size: 80%;
  130. text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  131. color: #fff;
  132. }
  133.  
  134. .social {
  135. display: inline-block;
  136. }
  137. .social a {
  138. text-decoration: none;
  139. margin-left: 15px;
  140. text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  141. color: #fff;
  142. }
  143.  
  144. .links a {
  145. font-size: 15px;
  146. padding-left: 15px;
  147. font-family: sans-serif;
  148. letter-spacing: 2px;
  149. text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  150. text-decoration: none;
  151. color: #fff;
  152. }
  153.  
  154. .content-subhead {
  155. text-transform: uppercase;
  156. color: #aaa;
  157. border-bottom: 1px solid #eee;
  158. padding: 0.4em 0;
  159. font-size: 80%;
  160. font-weight: 500;
  161. letter-spacing: 0.1em;
  162. }
  163.  
  164. .content {
  165. padding: 2em 3em 0;
  166. max-width: 1000px;
  167. font-size: 110%;
  168. line-height: 1.45;
  169. color: #333332;
  170. }
  171.  
  172. .post {
  173. padding-bottom: 1em;
  174. border-bottom: 1px solid #f2f2f0;
  175. }
  176. .post-title {
  177. font-size: 1.5em;
  178. color: #333332;
  179. letter-spacing: -1px;
  180. }
  181. .post-meta {
  182. color: #999;
  183. font-size: 90%;
  184. margin-top: -10px;
  185. }
  186.  
  187.  
  188.  
  189. .archive-item {
  190. padding: 10px 0;
  191. border-bottom: 1px solid #f2f2f0;
  192. }
  193.  
  194. .archive-date {
  195. margin: 0;
  196. }
  197.  
  198. .archive-post {
  199. line-height: 130%;
  200. }
  201.  
  202. .archive-meta {
  203. color: #999;
  204. font-size: 80%;
  205. margin: -1px 0 0 0;
  206. }
  207.  
  208. .footer {
  209. text-align: center;
  210. padding: 2em 0;
  211. font-size: 75%;
  212. }
  213. .footer .pure-menu a:hover,
  214. .footer .pure-menu a:focus {
  215. background: none;
  216. }
  217.  
  218. .pagination-wrapper {
  219. padding-top: 6px;
  220. }
  221. .pagination-left, .pagination-right {
  222. position: absolute;
  223. top: 0;
  224. }
  225. .pagination {
  226. font-size: 80%;
  227. text-align: center;
  228. position: relative;
  229. width: 450px;
  230. margin: 0 auto;
  231. max-width: 100%;
  232. }
  233. .pagination-left {
  234. left: 0;
  235. }
  236. .pagination-right {
  237. right: 0;
  238. }
  239.  
  240. .go-top {
  241. position: fixed;
  242. bottom: 2em;
  243. right: 2em;
  244. text-decoration: none;
  245. color: white;
  246. background-color: rgba(0, 0, 0, 0.3);
  247. font-size: 12px;
  248. padding: 1em;
  249. display: none;
  250. }
  251.  
  252. .go-top:hover {
  253. background-color: rgba(0, 0, 0, 0.6);
  254. }
  255.  
  256. .highlight pre {
  257. font-size: 75%;
  258. }
  259.  
  260. /* LAYOUT CSS */
  261. #layout {
  262. padding-left: 25%; /* "left col (nav + list)" width */
  263. position: relative;
  264. }
  265. @media (max-width: 767px) {
  266. .sidebar {
  267. width: 100%;
  268. position: relative;
  269. margin: 0;
  270. height: 450px;
  271. }
  272. .content {
  273. padding: 1em 1.5em 0;
  274. font-size: 85%;
  275. }
  276.  
  277. .cover-img {
  278. background-position: 0;
  279. background-size: cover;
  280. }
  281.  
  282. .cover-body {
  283. padding-bottom: 5%;
  284. padding-top: 0;
  285. }
  286.  
  287. .header,
  288. .header-article {
  289. text-align: center;
  290. top: auto;
  291. position: static;
  292. }
  293.  
  294. #layout {
  295. padding: 0;
  296. }
  297. }
  298.  
  299. @media (max-width: 480px) {
  300. .cover-img {
  301. background-position: 0;
  302. }
  303. }
  304.  
  305. p#post-share-links {letter-spacing: normal; position:absolute;
  306. top:0;
  307. right:0;
  308. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement