Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. .bodycontainer {
  2. position: relative;
  3. display: inline-block;
  4. margin-top: 140px; /* size of header */
  5. margin-left: 20vw; /* size of side-nav */
  6. padding-bottom: 200px;
  7. background-color: #ffffff;
  8. }
  9. .bodycontainer .title {
  10. position: relative;
  11. display: inline-block;
  12. float: left;
  13. width: 80%;
  14. margin: 10px 0 0 10%;
  15. padding: 30px 0;
  16. }
  17. .bodycontainer .title h1 {
  18. font-size: 32px;
  19. font-family: sans-serif;
  20. font-weight: 100;
  21. color: #383838;
  22. }
  23.  
  24. .blogcontainer {
  25. position: relative;
  26. display: inline-block;
  27. float: left;
  28. width: 89%;
  29. margin: 20px 0 0 10%;
  30. opacity: 1;
  31. }
  32. .blogcontainer .blogrow {
  33. position: relative;
  34. display: inline-block;
  35. float: left;
  36. width: 100%;
  37. }
  38. .blog {
  39. position: relative;
  40. display: inline-block;
  41. height: 300px;
  42. width: 390px;
  43. border: #cccccc;
  44. float: left;
  45. background-color: #ffffff;
  46. margin: 0 1vw 40px 0;
  47. border: 1px solid #8ec640;
  48. }
  49. .blog img {
  50. position: absolute;
  51. display: block;
  52. margin: auto;
  53. top: 0;
  54. left: 0;
  55. width: 100%;
  56. height: 100%;
  57. }
  58. .blog .blogtitle {
  59. position: absolute;
  60. display: block;
  61. bottom: 0;
  62. width: 330px;
  63. height: 100px;
  64. left: 0;
  65. margin: 0px 30px;
  66. background-color: #ffffff;
  67. }
  68. .blog .blogtitle h1 {
  69. color: #848484;
  70. font-family: 'Roboto';
  71. font-size: 24px;
  72. font-weight: 100;
  73. text-align: center;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement