Guest User

Untitled

a guest
Feb 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. /*--------------------------------------------------------------
  2. Typography
  3. --------------------------------------------------------------*/
  4. body {
  5. margin: 0;
  6. font-family: 'Source Sans Pro',
  7. 'Helvetica',
  8. 'Arial',
  9. sans-serif;
  10. font-size: 18px;
  11. line-height: 1.5;
  12. }
  13.  
  14. span {
  15. color: orangered;
  16. }
  17.  
  18. .container {
  19. display: flex;
  20. width: 500px;
  21. }
  22.  
  23. .img {
  24. opacity: 0.6;
  25. }
  26.  
  27. .title {
  28. width: 380px;
  29. background-color: rgba(255, 255, 255, 0.8);
  30. border-radius: 15px;
  31. text-align: center;
  32. margin: 20px 20px;
  33. align-self: flex-start;
  34. position: absolute;
  35. padding: 0 40px;
  36. line-height: 45px;
  37. }
  38.  
  39. .hero {
  40. align-self: center;
  41. text-align: center;
  42. position: absolute;
  43. color: #fff;
  44. width: 300px;
  45. margin: 20px 100px;
  46. font-size: 80px;
  47. }
  48.  
  49. .heroreward {
  50. align-self: flex-end;
  51. font-size: 40px;
  52. text-align: center;
  53. position: absolute;
  54. z-index: 110;
  55. width: 300px;
  56. margin: 20px 100px;
  57. opacity: 0;
  58. }
  59.  
  60. /*
  61. effet de survol
  62. ================== */
  63.  
  64. .img:hover {
  65. opacity: 1;
  66. z-index: 100;
  67. }
  68.  
  69. .container:hover>.heroreward {
  70. opacity: 1;
  71. color: #fff;
  72. }
Add Comment
Please, Sign In to add comment