9-cookies.html - bitreich-www - the bitreich www website generator | |
git clone git://bitreich.org/bitreich-www/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hh… | |
Log | |
Files | |
Refs | |
Tags | |
--- | |
9-cookies.html (1235B) | |
--- | |
1 <style type="text/css"> | |
2 | |
3 #cake { | |
4 width: 100%; | |
5 color: white; | |
6 height: 200px; | |
7 position: absolute; | |
8 left:0; | |
9 bottom:0; | |
10 background-color: black; | |
11 line-height: 40px; | |
12 opacity: 0.8; | |
13 text-align: center; | |
14 font-size:1.3em; | |
15 font-weight: bold; | |
16 | |
17 } | |
18 | |
19 #cookie::before{ | |
20 content: ""; | |
21 position: absolute; | |
22 left: 0; | |
23 bottom: 200px; | |
24 right: 0; | |
25 background-repeat: repeat; | |
26 height: 20px; | |
27 background-size: 20px 20px; | |
28 background-image: | |
29 radial-gradient(circle at 10px -2px, pink 12px, black 15px); | |
30 } | |
31 | |
32 #gcpdr { | |
33 font-size: 0.7em; | |
34 } | |
35 | |
36 #cookie { | |
37 border-radius:10px; | |
38 background-color: green; | |
39 padding: 5px; | |
40 box-shadow: 0px 0px 4px black; | |
41 margin-left: 10%; | |
42 border: solid black 1px; | |
43 cursor: pointer; | |
44 font-size: 1.3em; | |
45 } | |
46 | |
47 </style> | |
48 | |
49 <div id="cake"> | |
50 <p> | |
51 Bitreich members like to eat cake. We only store good cake recipes. | |
52 <span id="gcpdr">This complies with the GCPR - General Cookie Protecti… | |
53 Ruling.</span> | |
54 <span id="cookie" onclick='alert(":("); window.location.href="/dickb… | |
55 </p> | |
56 </div> | |
57 |