DanelCodes

Tutorial 02 | Prueba + Sin Imagen

Mar 3rd, 2019
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. /*HTML*/
  2.  
  3. <div id="banner">
  4. <n>The Story of Tonight</n>
  5. <m>Something you will never see again
  6. No matter what she tells you
  7. Let’s have another round tonight
  8. Raise a glass to the four of us</m>
  9. </div>
  10.  
  11.  
  12. /*CSS*/
  13.  
  14. #banner {
  15. width: 300px;
  16. margin: 0 auto;
  17. margin-top: 200px;
  18. margin-bottom: 200px;
  19. }
  20. #banner n {
  21. font: 60px 'Anton', sans-serif;
  22. text-transform: uppercase;
  23. font-weight: bold;
  24. width: 270px;
  25. display: block;
  26. line-height: 100%;
  27. color: #C3DE48;
  28. border-left: 10px solid #C3DE48;
  29. padding-left: 40px;
  30. position: relative;
  31. top: 120px;
  32. left: 70px;
  33. }
  34. #banner m {
  35. font: 7px arial;
  36. text-transform: uppercase;
  37. letter-spacing: 1px;
  38. display: block;
  39. text-align: justify;
  40. margin-top: 5px;
  41. width: 266px;
  42. background: #fff;
  43. padding: 13px;
  44. position: relative;
  45. top: 120px;
  46. left: 70px;
  47. }
  48. #banner o {
  49. display: block;
  50. width: 0;
  51. height: 0;
  52. border-style: solid;
  53. border-width: 0 0 200px 700px;
  54. border-color: transparent transparent rgba(195, 222, 72, 0.5) transparent;
  55. position: relative;
  56. top: 65px;
  57. float: right;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment