Advertisement
edusan

aviso.css

Dec 29th, 2013
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.34 KB | None | 0 0
  1. .avisoCookie {
  2.     background: none repeat scroll 0 0 #fff9f4;
  3.     border-top: 1px solid #56636E;
  4.     bottom: 0;
  5.     box-shadow: 0 0 8px #56636E;
  6.     overflow: hidden;
  7.     position: fixed;
  8.     width: 100%;
  9.     z-index: 4000;
  10.     padding:15px;
  11.     font: 0.85em Arial, Helvetica, sans-serif;
  12. }
  13. .textoCookie {
  14. width: 80%;
  15. float: left;
  16. color: #001424;
  17. margin: auto;
  18. }
  19. .accionCookie {
  20. width: 20%;
  21. float: right;
  22. }
  23. .avisoCookie p, .cookieDiv a, .cookieDiv div {
  24. margin: 3px 0;
  25. }
  26. .botonCookie {
  27. padding: 5px 12px;
  28. background: #000000;
  29. cursor: pointer;
  30. position:relative;
  31. transition: none;
  32. text-transform: uppercase;
  33. text-decoration: none;
  34. color: #fff;
  35. font-weight: bold;
  36. display: inline-block;
  37. }      
  38. .botonCookie:hover {
  39. box-shadow: 0 2px 0 #b3b3b3;
  40. -moz-box-shadow: 0 2px 0 #b3b3b3;
  41. -webkit-box-shadow: 0 2px 0 #b3b3b3;
  42. top: 1px;
  43. transition: all ease 0.3s;
  44. -moz-transition: all ease 0.3s;
  45. -webkit-transition: all ease 0.3s;
  46. -o-transition: all ease 0.3s;
  47. -ms-transition: all ease 0.3s;
  48. }
  49. .botonCookie:active {
  50. box-shadow: 0 2px 0 #b3b3b3, 0px 1px 4px rgba(0,0,0,0.3) inset;
  51. -moz-box-shadow: 0 2px 0 #b3b3b3, 0px 1px 4px rgba(0,0,0,0.3) inset;
  52. -webkit-box-shadow: 0 2px 0 #b3b3b3, 0px 1px 4px rgba(0,0,0,0.3) inset;
  53. transition: none;
  54. -moz-transition: none;
  55. -webkit-transition: none;
  56. -o-transition: none;
  57. -ms-transition: none;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement