Guest User

Untitled

a guest
Dec 11th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. /**
  2. * Spotlight: Homepage Navigation Trials
  3. */
  4.  
  5. /*Reset and highlight*/
  6. /* * {
  7. border: 1px solid pink;
  8. padding: 0px;
  9. margin: 0px;
  10. }
  11. */
  12.  
  13. p {
  14. width: 70%;
  15. font-family: georgia;
  16. font-size: 1em;
  17. }
  18.  
  19. h2 {
  20. font-family: arial;
  21. font-size: 2em;
  22. }
  23.  
  24. .zone {
  25. width: 70%;
  26. border: 5px solid #dadada;
  27. padding: 10px 30px 30px;
  28. transition: fade 600ms;
  29. margin: 10px;
  30. }
  31.  
  32. .zone:hover {
  33. background: silver;
  34. transition: ease 400ms;
  35. }
  36.  
  37. a {
  38. text-decoration: none;
  39. }
  40.  
  41. .button {
  42. background: lime;
  43. width: 20%;
  44. float: right;
  45. padding: 10px;
  46. margin: -18px -30px;
  47. font-size: 1.5em;
  48. font-family: arial;
  49. text-align: center;
  50. }
  51.  
  52. a:hover {
  53. background: red;
  54. transition: fade-in 400ms;
  55. }
Add Comment
Please, Sign In to add comment