diff --git a/onlyfans/index.html b/onlyfans/index.html new file mode 100644 index 0000000..87b5569 --- /dev/null +++ b/onlyfans/index.html @@ -0,0 +1,33 @@ + + + + + + Are you over 18? + + + + + +
+ +
+ + + + diff --git a/onlyfans/onlyfans.webm b/onlyfans/onlyfans.webm new file mode 100644 index 0000000..86555a7 Binary files /dev/null and b/onlyfans/onlyfans.webm differ diff --git a/onlyfans/style.css b/onlyfans/style.css new file mode 100644 index 0000000..3388230 --- /dev/null +++ b/onlyfans/style.css @@ -0,0 +1,39 @@ +body { + margin: 0; + overflow: hidden; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + background-color: #a8c5db; +} + +#playButton { + padding: 20px 40px; + font-size: 20px; + color: black; + background-color: #F5A9B8; + border-radius: 50px; + outline-color: white; + outline-style: outset; + cursor: pointer; +} + +#playButton:hover { + background-color: #5BCEFA; +} + +#videoContainer { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + display: none; +} + +#videoContainer video { + width: 100%; + height: 100%; + object-fit: cover; +} \ No newline at end of file