Advertisement
HimikoWerckmeister

Untitled

Jun 21st, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. body {
  2. background-image: url('http://s3.amazonaws.com/codecademy-content/courses/ltp2/img/reader/bg.png');
  3. -webkit-background-size: cover;
  4. -moz-background-size: cover;
  5. -o-background-size: cover;
  6. background-size: cover;
  7. }
  8.  
  9. p {
  10. margin: 0;
  11. }
  12.  
  13. .row {
  14. margin: 0;
  15. }
  16.  
  17. .articles {
  18. margin-top: 30px;
  19. margin-bottom: 30px;
  20. }
  21.  
  22. .article {
  23. color: #222;
  24. background: rgba(255,255,255,.9);
  25. border-spacing: 2px;
  26. border-color: gray;
  27. font-family: arial,sans-serif;
  28. border-bottom: 1px #e5e5e5 solid;
  29. }
  30.  
  31. .current .item {
  32. background: rgba(206,220,206,.9);
  33. }
  34.  
  35. .item {
  36. cursor: pointer;
  37. padding-top: 7px;
  38. padding-bottom: 7px;
  39.  
  40. }
  41.  
  42. .item .source {
  43. margin-left: 20px;
  44. }
  45.  
  46. .item .title {
  47. font-weight: bold;
  48. }
  49.  
  50. .item .pubdate {
  51. margin-right: 20px;
  52. }
  53.  
  54. .item .pubdate {
  55. text-align: right;
  56. }
  57.  
  58. .description {
  59. display: none;
  60. padding-top: 10px;
  61. padding-bottom: 10px;
  62. }
  63.  
  64. .description h1 {
  65. margin-top: 0px;
  66. font-size: 23px;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement