Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. body {
  2.   background-color: #282828;
  3. }
  4.  
  5. h3 {
  6.   color: #ebdbb2;
  7.   font-family: 'Roboto Mono', monospace;
  8. }
  9.  
  10. h1 {
  11.   font-family: 'Pacifico', cursive;
  12.   text-align: center;
  13.   color: #ebdbb2;
  14.   font-size: 90;
  15. }
  16.  
  17. a {
  18.   color: inherit;
  19.   text-decoration: none;
  20. }
  21.  
  22. list {
  23.   text-align: center;
  24.   text-decoration: none;
  25. }
  26.  
  27. .all {
  28.   align-self: center;
  29.   float: left;
  30.   padding: 20px;
  31. }
  32.  
  33. .google {
  34.   text-align: center;
  35.   background-color: #cc241d;
  36.   width: 200px;
  37. }
  38.  
  39. .reddit {
  40.   text-align: center;
  41.   background-color: #458588;
  42.   width: 200px;
  43. }
  44.  
  45. .programming {
  46.   text-align: center;
  47.   background-color: #689d6a;
  48.   width: 200px;
  49. }
  50.  
  51. .gaming {
  52.   text-align: center;
  53.   background-color: #d65d0e;
  54.   width: 200px;
  55. }
  56.  
  57. .linux {
  58.   text-align: center;
  59.   background-color: #98971a;
  60.   width: 200px;
  61. }
  62.  
  63. .links {
  64.   text-align: center;
  65.   color: #282828;
  66.   font-family: 'Roboto Mono', monospace;
  67.   text-decoration: none;
  68.   font-weight: bold;
  69.   background-color: #ebdbb2;
  70.   width: 200px;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement