Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. /* CSS Document */
  2.  
  3. body {
  4. background-color:rgba(171,161,162,1.00);
  5. background: linear-gradient(grey,darkgrey);
  6.  
  7. }
  8.  
  9. div {
  10. width: 150px;
  11. height: 100px;
  12. background: white;
  13. transition: width 2s ease-in-out;
  14.  
  15. }
  16.  
  17. div:hover {
  18. width:99999px
  19.  
  20. }
  21.  
  22. #div1 {-webkit-transition-timing-function: linear;}
  23.  
  24.  
  25. #velkomsthelsing {
  26. font-size:45px;
  27. color: white;
  28. border:white thick solid;
  29. background-color: black
  30.  
  31. }
  32. #navbaren
  33. {
  34. padding: 20px;
  35. border: 1px solid white;
  36. background-color: black;
  37. /*text-align: center; <<<uncomment if you want the buttons in the middle>>> */
  38. }
  39. #navbaren li {
  40. display: inline-block;
  41. background-color: black;
  42. color: white;
  43. text-align: center;
  44. border: 1px solid white;
  45. padding: 20px;
  46.  
  47. }
  48.  
  49. .oddetallslinje{
  50. background-color: #000000
  51. }
  52.  
  53.  
  54. p {
  55. color: rgba(255,248,248,1.00);
  56. }
  57.  
  58. #profilbilde {
  59. border:#000000 thick solid;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement