Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1.  
  2. .artContainer {
  3. font-family: $Adella;
  4. text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  5. transition: ease all 1s;
  6. position: relative;
  7. width: 421px;
  8. height: 175px;
  9. .articleBG {
  10. z-index: 01;
  11. position: absolute;
  12. background-image: url("../images/len.jpg");
  13. width: 100%;
  14. height: 100%;
  15. &:after {
  16. position: absolute;
  17. content: "";
  18. opacity: .5;
  19. background-image: $gradviolet;
  20. width: 100%;
  21. height: 100%;
  22. }
  23. }
  24. &:hover {
  25. .articleBG:after {
  26. opacity: .8;
  27. }
  28. }
  29. .content {
  30. position: absolute;
  31. color: aqua;
  32. z-index: 1000;
  33. color: $pallete4;
  34. padding: 10px;
  35. h5 {
  36. font-size: 2rem;
  37. margin-bottom: 10px;
  38. }
  39. p {
  40. display: flex;
  41. justify-content: space-between;
  42. }
  43. }
  44. }
  45.  
  46.  
  47.  
  48.  
  49. <article class="artContainer">
  50. <div class="articleBG">
  51. </div>
  52. <div class="content">
  53. <h5>Lenovo news</h5>
  54. <p><a class="author">By Ed Shawn</a><a class="count">180</a></p>
  55. </div>
  56. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement