Advertisement
makispaiktis

Codecademy - 17th Course (CSS Example)

Oct 22nd, 2019 (edited)
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.67 KB | None | 0 0
  1. /* Universal Styles */
  2.  
  3. html {
  4.   font-size: 16px;
  5. }
  6.  
  7. body {
  8.   background-color: white;
  9. }
  10.  
  11. p{
  12.   min-width: 200px;
  13.   min-height: 200px;
  14. }
  15.  
  16. .image-container {
  17.   overflow: hidden;
  18. }
  19.  
  20. .image-container img {
  21.   max-width: 100%;
  22.   height: auto;
  23.   display: block;
  24. }
  25.  
  26. /* Banner Section */
  27.  
  28. #banner {
  29.   height: 46rem;
  30.   background-image: url('camel-background.png');
  31.   background-position: center;
  32.   background-repeat: no-repeat;
  33.   background-size: cover;
  34.   display: flex;
  35.   justify-content: center;
  36.   align-items: center;
  37.   text-align: center;
  38. }
  39.  
  40. #banner h1 {
  41.   font-size: 3.75rem;
  42.   font-family: 'Roboto', sans-serif;
  43.   font-weight: 300;
  44.   color: white;
  45. }
  46.  
  47. /* Blog Post */
  48.  
  49. #blog {
  50.   width: 86%;
  51.   margin: auto;
  52.   display: flex;
  53.   flex-direction: column;
  54.   align-items: center;
  55. }
  56.  
  57. #blog .post {
  58.   width: 52%;
  59.   margin-top: 12.5%;
  60.   margin-bottom: 7.5%;
  61.   display: flex;
  62.   flex-direction: column;
  63.   align-items: center;
  64.   font-family: 'Merriweather', serif;
  65.   font-weight: 300;
  66.   font-size: 1rem;
  67.   text-align: center;
  68.   line-height: 1.8;
  69.   color: #444444;
  70. }
  71.  
  72. .post h2 {
  73.   font-size: 1.875rem;
  74.  
  75. }
  76.  
  77. .post h3 {
  78.   font-size: 1.125rem;
  79.   color: #999999;
  80. }
  81.  
  82. .post .opening-line {
  83.   margin-top: 4.1875rem;
  84.   margin-bottom: 1.5rem;
  85.   color: black;
  86.   font-weight: bold;
  87. }
  88.  
  89. .post .image-container {
  90.   width: 100%;
  91. }
  92.  
  93. /* Blog Images */
  94.  
  95. .images {
  96.   margin-bottom: 20%;
  97. }
  98.  
  99. .images .image-container {
  100.   display: inline-block;
  101.   width: 50%;
  102. }
  103.  
  104. /* Footer */
  105.  
  106. footer {
  107.   padding: 4rem 0;
  108.   border-top: 1px solid #999999;
  109.   font-family: 'Roboto', sans-serif;
  110.   font-size: 1.125rem;
  111.   color: #999999;
  112.   text-align: center;
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement