Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.45 KB | None | 0 0
  1. body {
  2. background-image: -webkit-gradient(
  3.     linear,
  4.     left bottom,
  5.     left top,
  6.     color-stop(0.2, rgb(255,0,0)),
  7.     color-stop(0.73, rgb(176,2,2)),
  8.     color-stop(1, rgb(145,0,0))
  9. );
  10. background-image: -moz-linear-gradient(
  11.     center bottom,
  12.     rgb(255,0,0) 20%,
  13.     rgb(176,2,2) 73%,
  14.     rgb(145,0,0) 100%
  15. );
  16. font-family:"Times New Roman", Times, serif;
  17. }
  18. h2.like_status_header {
  19. font-family:"Times New Roman";
  20. font-size:24px;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement