Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.73 KB | None | 0 0
  1. body {
  2.   /* Old browsers */
  3.   background: #141E30;
  4.   /* Chrome 10-25, Safari 5.1-6 */
  5.   background: -webkit-linear-gradient(-45deg, #35577D, #141E30);
  6.   /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  7.   background: linear-gradient(-45deg, #35577D, #141E30);
  8.   margin: 0;
  9.   padding: 0;
  10. }
  11.  
  12. h1 {
  13.   font-family: georgia;
  14.   color: #FFF;
  15.   font-size: 32px;
  16.   padding-top: 100px;
  17.   text-align: left;
  18.   width: 60%;
  19. }
  20.  
  21. h2 {
  22.   font-family: georgia;
  23.   border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  24.   color: rgba(255, 255, 255, 0.5);
  25.   font-weight: 100;
  26.   font-size: 22px;
  27.   line-height: 24px;
  28.   padding-bottom: 30px;
  29.   text-align: left;
  30.   width: 70%;
  31. }
  32.  
  33. p {
  34.   color: AliceBlue;
  35.   line-height: 1em;
  36.   text-align: left;
  37.   width: 100%;
  38. }
  39.  
  40. .byline {
  41.   color: rgba(255, 255, 255, 0.5);
  42.   float: left;
  43.   font-family: 'Roboto', sans-serif;
  44.   font-weight: 100;
  45.   font-size: 14px;
  46.   padding-left: 10px;
  47.   text-transform: uppercase;
  48. }
  49.  
  50. .caption {
  51.   background-color: rgba(0, 0, 0, 0.6);
  52.   color: rgba(255, 255, 255, 0.65);
  53.   display: block;
  54.   font-family: 'Playfair Display', serif;
  55.   font-size: 14px;
  56.   font-style: italic;
  57.   line-height: 14px;
  58.   margin-left: 20px;
  59.   padding: 10px;
  60.   position: relative;
  61.   top: 80%;
  62.   width: 60%;
  63. }
  64.  
  65. .content {
  66.   padding: 40px;
  67. }
  68.  
  69. .image {
  70.   background-image: url("https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-4/htmlcss1-img_soccer.jpeg");
  71.   background-size: cover;
  72.   background-position: center;
  73.   height: 300px;
  74. }
  75.  
  76. .writer-img {
  77.   -webkit-box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
  78.   -moz-box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
  79.   box-shadow: 5px 0px 5px 0px rgba(0, 0, 50, 0.97);
  80.   float: left;
  81.   width: 50px;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement