Guest User

Untitled

a guest
Oct 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. /* Jumboron Gradiant */
  2. /*--- Jumbotron--- */
  3.  
  4. .jumbotron {
  5.  
  6. min-height: 460px;
  7. background:
  8. /* top, transparent red, faked with gradient */
  9. linear-gradient(
  10. rgba(0,236,239,.9),
  11. rgba(236,238,239,1)
  12. ),
  13. url(img/slideshow_1.jpeg) center center fixed;
  14. -webkit-background-size: cover;
  15. -moz-background-size: cover;
  16. -o-background-size: cover;
  17. background-size: cover;
  18. position: relative;
  19. padding: 40px 0;
  20. color: #fff;
  21. text-align: center;
  22. &:before {
  23. content: '';
  24. position: absolute;
  25. top: 0;
  26. right: 0;
  27. bottom: 0;
  28. left: 0;
  29. opacity: .6;
  30. -webkit-font-smoothing: antialiased;
  31. text-rendering: optimizeLegibility;
  32.  
  33. }
  34.  
  35. /*h1 gradiant Slap Attack, Place your own brand here*/
  36. .jumbotron h1 {
  37. font-family: 'Permanent Marker', cursive;
  38. font-size: 10rem;
  39. text-shadow: 0px 0px 30px 0;
  40. text-align: center center;
  41. text-rendering: optimizeLegibility !important;
  42. text-rendering: antialiased !important;
  43. -webkit-font-smoothing: antialiased !important;
  44. text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  45. -webkit-font-smoothing: antialiased;
  46. text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  47. color-webkit-linear-gradient(red, yellow); /* For Safari 5.1 to 6.0 */
  48. background: -o-linear-gradient(red, yellow); /* For Opera 11.1 to 12.0 */
  49. background: -moz-linear-gradient(red, yellow); /* For Firefox 3.6 to 15 */
  50. background: linear-gradient(red, yellow); /* Standard syntax */
  51. background: -webkit-linear-gradient(red, yellow);
  52. -webkit-background-clip: text;
  53. -webkit-text-fill-color: transparent;
  54. opacity: 1;
  55.  
  56. }
Add Comment
Please, Sign In to add comment