Advertisement
Guest User

css

a guest
Sep 13th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.03 KB | None | 0 0
  1. body {
  2.     text-align: center;
  3.     font-family: 'Roboto', sans-serif;
  4.     background-image: url("bg.png");
  5.     color: white;
  6.     font-weight: 100;
  7. }
  8.  
  9. h1 {
  10.     font-weight: 100;
  11.     font-size: 40pt;
  12. }
  13.  
  14. h2 {
  15.     font-weight: 100;
  16.     font-size: 32pt;
  17. }
  18.  
  19. p {
  20.     font-size: 24pt;
  21.     padding: 5px;
  22.     width: 200px;
  23.     border: 1px solid white;
  24.     display: inline-block;
  25.     cursor: pointer;
  26.  
  27.     transition: background-color .5s;
  28.     -webkit-transition: background-color .5s;
  29.     -moz-transition: background-color .5s;
  30. }
  31.  
  32. p:hover {
  33.     background-color: rgba(255,255,255,0.5);
  34.     color: red;
  35. }
  36.  
  37. a, a:visited {
  38.     text-decoration: none;
  39.     color: white;
  40. }
  41.  
  42. a:hover {
  43.     color: red;
  44. }
  45.  
  46. #googlebar {
  47.     background-color: rgba(0,0,0,0);
  48.     border: 1px solid white;
  49.     width: 100px;
  50.     font-family: 'Roboto', sans-serif;
  51.     font-weight: 100;
  52.     font-size: 24pt;
  53.     width: 848px;
  54.     color: white;
  55.     padding: 5px;
  56.     text-align: center;
  57.     transition: border-color .5s;
  58.     -webkit-transition: border-color .5s;
  59.     -moz-transition: border-color .5s;
  60. }
  61.  
  62. #googlebar:focus {
  63.     border-color: red;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement