forked from Akio033/Akio033.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (81 loc) · 3.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>Kinklist</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous">
</script>
<script src="kinklist.js"></script>
<link rel="icon" type="image/x-icon" href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMTAvMjEvMTV5ehY1AAAAZElEQVQ4jaWTwQ3AIAwDbcT+I9f9hjYQA/mAkO7igKAACWdFAF0A2gb0hP0uCyTATyAJSoaK5xGyEmTC9lktmORUdAQvBQ5cJshktoDk0HkmKRNUEmuE6ztYVXe7bT+jW7z9zi8qYiodCjCHKgAAAABJRU5ErkJggg==">
<link rel="stylesheet" href="kinklist.css">
</head>
<body>
<div class="widthWrapper">
<button id="Edit"></button>
<h1>Kinklist</h1>
<select id="listType">
<option value="classic">Classic</option>
</select>
<div class="legend">
<div><span data-color="#FFFFFF" class="choice notEntered"></span> <span class="legend-text">Not Entered</span></div>
<div><span data-color="#6DB5FE" class="choice favorite"></span> <span class="legend-text">Favorite</span></div>
<div><span data-color="#23FD22" class="choice like"></span> <span class="legend-text">Like</span></div>
<div><span data-color="#FDFD6B" class="choice indifferent"></span> <span class="legend-text">Indifferent</span></div>
<div><span data-color="#DB6C00" class="choice maybe"></span> <span class="legend-text">Maybe</span></div>
<div><span data-color="#920000" class="choice limit"></span> <span class="legend-text">Limit</span></div>
</div>
<div id="ExportWrapper">
<input type="text" id="URL">
<button id="Export">Export</button>
<div id="Loading">Loading</div>
</div>
<button id="StartBtn"></button>
<div id="InputList"></div>
</div>
<div id="EditOverlay" class="overlay">
<textarea id="Kinks">
#Topics
* BF/GF Experience
? Such as a roleplay date
* Flirting
* Romance
* Cuddle Buddy/Pillow
* Casual Conversation
* Lore-based rp
* Drama-based rp (must be discussed)
#RP Styles
* Light roleplay (informal)
? Chatting in character without quotationsA
* Serious roleplay (formal)
? Usually 3rd person, literate style with "quotations"
* Short-form (1-3 lines)
* Medium-form (1-2 textboxes)
* Long-form (multi-paragraphs)
#Looking for
* Short-term relationships/rp partners
* Long-term relationships/rp partners
* Platonic friendships
</textarea>
<button id="KinksOK">Accept</button>
</div>
<div id="InputOverlay" class="overlay">
<div class="widthWrapper">
<div id="InputPrevious"></div>
<div id="InputCurrent">
<h2 id="InputCategory"></h2>
<h3 id="InputField"></h3>
<button class="closePopup">×</button>
<div id="InputValues"></div>
</div>
<div id="InputNext"></div>
</div>
</div>
<div id="DescriptionOverlay" class="overlay">
<div id="Description"></div>
</div>
</body>
</html>