Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,700,900&subset=latin,latin-ext);
  2.  
  3. .clearfix:before,
  4. .clearfix:after {
  5. content: " ";
  6. clear: both;
  7. display: block;
  8. }
  9.  
  10. body {
  11. color: #444444;
  12. font-family: 'Source Sans Pro', sans-serif;
  13. margin: 0;
  14. box-sizing: border-box;
  15. padding: 0;
  16. }
  17. .hero {
  18. height: 350px;
  19. background-image: url("/static/lessons/15.jpg");
  20. background-size: cover;
  21. }
  22. h1 {
  23. padding-top: 100px;
  24. text-align: center;
  25. color: #FFFFFF;
  26. font-size: 40px;
  27. text-transform: uppercase;
  28. margin: 0;
  29. }
  30. .container {
  31. max-width: 700px;
  32. width: 80%;
  33. margin: 0 auto;
  34. }
  35. .main, .sidebar {
  36. float: right;
  37. }
  38. .main {
  39. width: 80%;
  40. }
  41. .sidebar {
  42. width: 20%;
  43. display: block;
  44. }
  45. .col {
  46. float: left;
  47. width: 25%;
  48. }
  49. img {
  50. width: 100%;
  51. }
  52. .social-media {
  53. position: fixed;
  54. top: calc(50vh - 65px);
  55. left: 10px;
  56. width: 40px;
  57. }
  58. .social-media i {
  59. height: 40px;
  60. width: 40px;
  61. font-size: 20px;
  62. margin-bottom: 5px;
  63. cursor: pointer;
  64. border-radius: 50%;
  65. background: #ccc;
  66. line-height: 40px;
  67. text-align: center;
  68. }
  69. .footer {
  70. height: 75px;
  71. background-color: #2C3E50;
  72. text-align: center;
  73. color: #FFFFFF;
  74. padding-top: 30px;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement