Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 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. float: left;
  9. }
  10. .headerimage {
  11. position: absolute;
  12. display: inline-block;
  13. width: 100%;
  14. height: 220px;
  15. top: 0;
  16. left: 0;
  17. }
  18. .headerimage img {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. .innercont {
  23. position: relative;
  24. display: -webkit-flex;
  25. display: -webkit-box;
  26. display: -moz-flex;
  27. display: -ms-flex;
  28. display: flex;
  29. float: left;
  30. margin: 100px 10% 0 10%;
  31. width: 80%;
  32. }
  33.  
  34. .section {
  35. position: relative;
  36. display: inline-block;
  37. float: left;
  38. background-color: #ffffff;
  39. align-items: stretch;
  40. }
  41. .section.s1 { width: 20%; }
  42. .section.s2 { width: 70%; }
  43. .section.s3 { width: 10%; }
  44.  
  45. .section .authorcircle {
  46. position: absolute;
  47. display: inline-block;
  48. top: 50px;
  49. left: 50%;
  50. transform: translateX(-50%);
  51. width: 100px;
  52. height: 100px;
  53. border-radius: 50%;
  54. border: 2px solid #a1a1a1;
  55. background-color: #ffffff;
  56. overflow: hidden;
  57. }
  58.  
  59. .section .authorcircle img {
  60. width: 100%;
  61. height: 100%;
  62. }
  63.  
  64. .section .title {
  65. position: relative;
  66. display: inline-block;
  67. float: left;
  68. width: 100%;
  69. margin: 40px 0 0;
  70. }
  71. .section .title h1 {
  72. font-size: 22px;
  73. font-family: sans-serif;
  74. font-weight: 600;
  75. color: #363636;
  76. }
  77.  
  78.  
  79. .section .body {
  80. position: relative;
  81. display: inline-block;
  82. float: left;
  83. width: 100%;
  84. }
  85. .section .body h1 {
  86. font-size: 17px;
  87. font-family: sans-serif;
  88. font-weight: 100;
  89. color: #6b6b6b;
  90. margin: 35px 0;
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement