2020-12-18 01:10:30 +00:00
|
|
|
<template>
|
|
|
|
<div class="warning-container">
|
|
|
|
<div class="warning">
|
2021-03-18 03:01:35 +00:00
|
|
|
<strong class="title">
|
2021-03-18 18:44:23 +00:00
|
|
|
<span
|
2021-03-18 03:01:35 +00:00
|
|
|
class="logo"
|
|
|
|
v-html="logo"
|
|
|
|
/>contains sexually explicit content
|
|
|
|
</strong>
|
2020-12-18 01:10:30 +00:00
|
|
|
|
|
|
|
<ul class="rules">
|
2020-12-18 23:40:36 +00:00
|
|
|
<li class="rule">You are at least 18 years old, and legally permitted to view adult material in your jurisdiction.</li>
|
2021-03-19 01:36:31 +00:00
|
|
|
<li class="rule">You do not regard erotic and frankly pornographic media as obscene or offensive.</li>
|
2020-12-18 22:50:13 +00:00
|
|
|
<li class="rule">You understand that most sexual scenarios depicted on this website are fictional, performed by professional actors for the purpose of entertainment, and not representative of real-life interactions.</li>
|
2020-12-18 01:10:30 +00:00
|
|
|
</ul>
|
|
|
|
|
2021-03-18 03:01:35 +00:00
|
|
|
<span class="preferences">You can adjust your content preferences later</span>
|
|
|
|
|
2020-12-18 01:10:30 +00:00
|
|
|
<div class="actions">
|
|
|
|
<a
|
|
|
|
href="https://www.google.com"
|
|
|
|
class="button leave"
|
2020-12-19 22:01:17 +00:00
|
|
|
@click="$emit('leave')"
|
2021-01-04 00:30:39 +00:00
|
|
|
><Icon icon="arrow-left16" />Leave</a>
|
2020-12-18 01:10:30 +00:00
|
|
|
|
|
|
|
<button
|
2021-01-04 00:30:39 +00:00
|
|
|
class="button enter queer"
|
|
|
|
@click="$emit('enter', true)"
|
|
|
|
>
|
|
|
|
<span class="button-title">Enter</span>
|
2021-01-04 18:57:53 +00:00
|
|
|
<span class="button-sub">I want to see gay, bi and trans content</span>
|
2021-01-04 00:30:39 +00:00
|
|
|
</button>
|
|
|
|
|
|
|
|
<button
|
|
|
|
class="button enter straight"
|
|
|
|
@click="$emit('enter', false)"
|
|
|
|
>
|
|
|
|
<span class="button-title">Enter</span>
|
|
|
|
<span class="button-sub">I prefer straight content</span>
|
|
|
|
</button>
|
2020-12-18 01:10:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2020-12-18 22:28:02 +00:00
|
|
|
<script>
|
|
|
|
import logo from '../../img/logo.svg';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
logo,
|
|
|
|
};
|
|
|
|
},
|
2021-01-04 00:30:39 +00:00
|
|
|
emits: ['enter'],
|
2020-12-18 22:28:02 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2020-12-18 01:10:30 +00:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import 'breakpoints';
|
|
|
|
|
|
|
|
.warning-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
2021-06-19 16:09:58 +00:00
|
|
|
background: var(--background-censor);
|
|
|
|
backdrop-filter: blur(.25rem);
|
2020-12-18 01:10:30 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.warning {
|
2021-06-19 16:09:58 +00:00
|
|
|
color: var(--text);
|
2020-12-18 01:10:30 +00:00
|
|
|
width: 50rem;
|
|
|
|
max-height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.copy,
|
|
|
|
.rules {
|
2021-03-18 03:01:35 +00:00
|
|
|
padding: .5rem 1rem;
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2021-03-18 18:44:23 +00:00
|
|
|
display: block;
|
2020-12-18 01:10:30 +00:00
|
|
|
font-size: 2rem;
|
2021-06-19 16:09:58 +00:00
|
|
|
margin: 1rem 0;
|
|
|
|
color: var(--text);
|
2021-03-18 18:44:23 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
width: 6.5rem;
|
|
|
|
display: inline-block;
|
|
|
|
fill: var(--primary);
|
|
|
|
margin: 0 .6rem 0 0;
|
|
|
|
|
|
|
|
::v-deep(svg) {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.copy {
|
|
|
|
display: block;
|
|
|
|
padding: 0 1rem;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rules {
|
|
|
|
margin: 0 0 0 1rem;
|
|
|
|
text-align: left;
|
2021-06-19 16:09:58 +00:00
|
|
|
text-shadow: 0 0 3px var(--highlight-strong);
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rule {
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
2021-01-04 00:30:39 +00:00
|
|
|
padding: 1rem 0;
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
2021-01-04 18:57:53 +00:00
|
|
|
display: inline-flex;
|
2021-03-24 00:26:33 +00:00
|
|
|
flex-basis: 0;
|
2021-01-04 18:57:53 +00:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-12-18 01:10:30 +00:00
|
|
|
border: none;
|
2021-06-19 16:09:58 +00:00
|
|
|
border-radius: .25rem;
|
2021-01-04 00:30:39 +00:00
|
|
|
padding: 0;
|
2021-03-24 00:26:33 +00:00
|
|
|
position: relative;
|
2020-12-18 01:10:30 +00:00
|
|
|
cursor: pointer;
|
2021-03-24 00:26:33 +00:00
|
|
|
font-size: 1.5rem;
|
2020-12-18 01:10:30 +00:00
|
|
|
text-decoration: none;
|
2021-06-19 16:09:58 +00:00
|
|
|
transition: border-radius .2s ease;
|
2020-12-18 01:10:30 +00:00
|
|
|
|
|
|
|
&.leave {
|
2021-06-19 16:09:58 +00:00
|
|
|
color: var(--shadow-strong);
|
2021-01-04 18:57:53 +00:00
|
|
|
flex-direction: row;
|
2021-01-04 00:30:39 +00:00
|
|
|
padding: 1rem;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 1.5rem;
|
|
|
|
height: 1.5rem;
|
|
|
|
margin: 0 1rem 0 0;
|
2021-06-19 16:09:58 +00:00
|
|
|
fill: var(--shadow);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--text);
|
2021-01-04 00:30:39 +00:00
|
|
|
}
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.enter {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2021-03-24 00:26:33 +00:00
|
|
|
&.straight,
|
|
|
|
&.queer {
|
2021-06-19 16:09:58 +00:00
|
|
|
color: var(--lighten-strong);
|
2021-03-24 00:26:33 +00:00
|
|
|
background: var(--darken-censor);
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
width: calc(100% + .3rem);
|
|
|
|
height: calc(100% + .25rem);
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
2021-03-24 16:17:51 +00:00
|
|
|
filter: blur(.25rem);
|
2021-03-24 00:26:33 +00:00
|
|
|
transition: filter .2s ease;
|
|
|
|
}
|
2021-06-19 16:09:58 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--text-light);
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
|
|
.button-sub {
|
|
|
|
color: var(--text-light);
|
|
|
|
}
|
|
|
|
}
|
2021-01-04 00:30:39 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 00:26:33 +00:00
|
|
|
&.straight:before {
|
|
|
|
background: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.queer:before {
|
|
|
|
background: linear-gradient(90deg, #f00, #f80, #ff0, #0f0, #00f, #a0f, #fff, #f8f, #0ff);
|
2021-01-04 00:30:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin: 0 2rem 0 0;
|
|
|
|
}
|
|
|
|
|
2020-12-18 01:10:30 +00:00
|
|
|
&:hover {
|
2021-01-04 00:30:39 +00:00
|
|
|
.icon {
|
2021-06-19 16:09:58 +00:00
|
|
|
fill: var(--text);
|
2021-01-04 00:30:39 +00:00
|
|
|
}
|
2021-03-24 00:26:33 +00:00
|
|
|
|
|
|
|
&.straight:before,
|
|
|
|
&.queer:before {
|
|
|
|
filter: blur(0);
|
|
|
|
}
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:30:39 +00:00
|
|
|
.button-title,
|
|
|
|
.button-sub {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-title {
|
|
|
|
font-size: 1.5rem;
|
2021-01-04 18:57:53 +00:00
|
|
|
padding: .5rem 0 .15rem 0;
|
2021-01-04 00:30:39 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-sub {
|
2021-01-04 18:57:53 +00:00
|
|
|
display: block;
|
|
|
|
font-size: .8rem;
|
2021-01-04 00:30:39 +00:00
|
|
|
padding: .15rem .5rem .75rem .5rem;
|
|
|
|
color: var(--lighten);
|
2020-12-18 22:28:02 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 18:57:53 +00:00
|
|
|
.preferences {
|
2021-06-19 16:09:58 +00:00
|
|
|
color: var(--shadow);
|
2021-01-04 18:57:53 +00:00
|
|
|
display: block;
|
2021-03-18 03:01:35 +00:00
|
|
|
padding: .5rem 0 1rem 0;
|
2021-01-04 18:57:53 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: .9rem;
|
|
|
|
}
|
|
|
|
|
2020-12-18 01:10:30 +00:00
|
|
|
@media(max-width: $breakpoint) {
|
|
|
|
.title {
|
2021-06-19 16:09:58 +00:00
|
|
|
font-size: 1.75rem;
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
2021-03-18 18:44:23 +00:00
|
|
|
|
|
|
|
.logo {
|
2021-06-19 16:09:58 +00:00
|
|
|
width: 5.75rem;
|
2021-03-18 18:44:23 +00:00
|
|
|
margin: 0 .5rem 0 0;
|
|
|
|
}
|
2021-01-04 00:46:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width: $breakpoint-small) {
|
|
|
|
.actions {
|
|
|
|
flex-direction: column-reverse;
|
2021-01-04 18:57:53 +00:00
|
|
|
padding: 0;
|
2021-01-04 00:30:39 +00:00
|
|
|
|
2021-01-04 00:46:05 +00:00
|
|
|
.button {
|
|
|
|
margin: 0 0 1rem 0;
|
|
|
|
}
|
2020-12-18 01:10:30 +00:00
|
|
|
|
2021-01-04 18:57:53 +00:00
|
|
|
.button:first-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-12-18 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|