Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <template>
  2. <div class="nh-cookie-wrapper">
  3. <div class="nh-cookie-banner" :class="{'nh-cookie-banner__hide' : this.hideBanner}">
  4. <div class="nh-cookie-banner__text">By continuing to browse this website, you agree to the use of cookies.</div>
  5. <div @click.prevent="_handleCookieAccept" class="nh-cookie-banner__btn"><img src="./close-cookie-banner.svg"></div>
  6. </div>
  7. </div>
  8. </template>
  9.  
  10.  
  11. nh-cookie-wrapper {
  12. position: fixed;
  13. z-index: 99999;
  14. bottom: 60px;
  15. width: 100%;
  16. margin: 0 auto;
  17. text-align: center;
  18. }
  19. .nh-cookie-banner{
  20. width: 50%;
  21. margin: 0 auto;
  22. background-color: black;
  23. color: #ffffff;
  24. height: 50px;
  25.  
  26. &__hide {
  27. display: none;
  28. visibility: hidden;
  29. }
  30. &__text {
  31. float: left;
  32. font-size: 14px;
  33. height: 100%;
  34. padding: 17px 17.5px;
  35.  
  36. font-family: 'Novo Apply Sans';
  37. line-height: 17px;
  38. letter-spacing: 1px;
  39. p {
  40. text-align: center;
  41. vertical-align: middle;
  42. display: table-cell;
  43. }
  44. }
  45. &__btn {
  46. float: right;
  47. background-color: black;
  48. display: inline-block;
  49. color: white;
  50. height: 100%;
  51.  
  52. border-left: 1px solid grey;
  53.  
  54. img {
  55. padding: 17px 17px;
  56. }
  57. }
  58. @include below-tablet {
  59.  
  60. }
  61. }
  62. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement