1/* =Cookie Banner Plugin 2----------------------------------------------- */ 3 4.dokuwiki { 5 6 .plugin-cookiebanner { 7 background-color: @ini_text_alt; 8 border-radius: 20px; 9 border-color: @ini_text_neu; 10 color: @ini_background_alt; 11 padding: 20px; 12 -webkit-box-shadow: none; 13 -moz-box-shadow: none; 14 box-shadow: none; 15 max-width: 50%; 16 bottom: 2rem; 17 right: auto; 18 left: 50%; 19 transform: translateX(-50%); 20 z-index: 999; 21 position: fixed; 22 23 hr { 24 display: none; 25 } 26 } 27} 28 29 30// <div class="plugin-cookiebanner"> 31// <p> 32// To improve the quality of our site, we track visitors anonymously. It doesn't hurt you, but helps us tremendously. We'd be grateful if you'd give us your consent. 33// </p> 34// <hr><button class="yay">Accept</button><button class="nay">Refuse</button></div> 35