sex
117
60a94191-7984-483c-87ed-61e3c1b817ce/503.html
Normal file
1
60a94191-7984-483c-87ed-61e3c1b817ce/ads.txt
Normal file
|
@ -0,0 +1 @@
|
|||
google.com, pub-6147861917104562, DIRECT, f08c47fec0942fa0
|
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 9 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
8
60a94191-7984-483c-87ed-61e3c1b817ce/css/app.css
Normal file
55
60a94191-7984-483c-87ed-61e3c1b817ce/css/bootstrap-tagsinput.css
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
.bootstrap-tagsinput {
|
||||
background-color: #fff;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
display: inline-block;
|
||||
padding: 4px 6px;
|
||||
color: #555;
|
||||
vertical-align: middle;
|
||||
border-radius: 4px;
|
||||
max-width: 100%;
|
||||
line-height: 22px;
|
||||
cursor: text;
|
||||
}
|
||||
.bootstrap-tagsinput input {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
background-color: transparent;
|
||||
padding: 0 6px;
|
||||
margin: 0;
|
||||
width: auto;
|
||||
max-width: inherit;
|
||||
}
|
||||
.bootstrap-tagsinput.form-control input::-moz-placeholder {
|
||||
color: #777;
|
||||
opacity: 1;
|
||||
}
|
||||
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
|
||||
color: #777;
|
||||
}
|
||||
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
|
||||
color: #777;
|
||||
}
|
||||
.bootstrap-tagsinput input:focus {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.bootstrap-tagsinput .tag {
|
||||
margin-right: 2px;
|
||||
color: white;
|
||||
}
|
||||
.bootstrap-tagsinput .tag [data-role="remove"] {
|
||||
margin-left: 8px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.bootstrap-tagsinput .tag [data-role="remove"]:after {
|
||||
content: "x";
|
||||
padding: 0px 2px;
|
||||
}
|
||||
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
}
|
250
60a94191-7984-483c-87ed-61e3c1b817ce/css/croppie.css
Normal file
|
@ -0,0 +1,250 @@
|
|||
.croppie-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.croppie-container .cr-image {
|
||||
z-index: -1;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform-origin: 0 0;
|
||||
max-height: none;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.croppie-container .cr-boundary {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.croppie-container .cr-viewport,
|
||||
.croppie-container .cr-resizer {
|
||||
position: absolute;
|
||||
border: 2px solid #fff;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer {
|
||||
z-index: 2;
|
||||
box-shadow: none;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer-vertical,
|
||||
.croppie-container .cr-resizer-horisontal {
|
||||
position: absolute;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer-vertical::after,
|
||||
.croppie-container .cr-resizer-horisontal::after {
|
||||
display: block;
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid black;
|
||||
background: #fff;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
content: '';
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer-vertical {
|
||||
bottom: -5px;
|
||||
cursor: row-resize;
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer-vertical::after {
|
||||
left: 50%;
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer-horisontal {
|
||||
right: -5px;
|
||||
cursor: col-resize;
|
||||
width: 10px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.croppie-container .cr-resizer-horisontal::after {
|
||||
top: 50%;
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
.croppie-container .cr-original-image {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.croppie-container .cr-vp-circle {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.croppie-container .cr-overlay {
|
||||
z-index: 1;
|
||||
position: absolute;
|
||||
cursor: move;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.croppie-container .cr-slider-wrap {
|
||||
width: 75%;
|
||||
margin: 15px auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.croppie-result {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.croppie-result img {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.croppie-container .cr-image,
|
||||
.croppie-container .cr-overlay,
|
||||
.croppie-container .cr-viewport {
|
||||
-webkit-transform: translateZ(0);
|
||||
-moz-transform: translateZ(0);
|
||||
-ms-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
/*************************************/
|
||||
/***** STYLING RANGE INPUT ***********/
|
||||
/*************************************/
|
||||
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
|
||||
/*************************************/
|
||||
|
||||
.cr-slider {
|
||||
-webkit-appearance: none;
|
||||
/*removes default webkit styles*/
|
||||
/*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
|
||||
width: 300px;
|
||||
/*required for proper track sizing in FF*/
|
||||
max-width: 100%;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 8px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.cr-slider::-webkit-slider-runnable-track {
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.cr-slider::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #ddd;
|
||||
margin-top: -6px;
|
||||
}
|
||||
|
||||
.cr-slider:focus {
|
||||
outline: none;
|
||||
}
|
||||
/*
|
||||
.cr-slider:focus::-webkit-slider-runnable-track {
|
||||
background: #ccc;
|
||||
}
|
||||
*/
|
||||
|
||||
.cr-slider::-moz-range-track {
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.cr-slider::-moz-range-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #ddd;
|
||||
margin-top: -6px;
|
||||
}
|
||||
|
||||
/*hide the outline behind the border*/
|
||||
.cr-slider:-moz-focusring {
|
||||
outline: 1px solid white;
|
||||
outline-offset: -1px;
|
||||
}
|
||||
|
||||
.cr-slider::-ms-track {
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: transparent;
|
||||
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
|
||||
border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
|
||||
border-width: 6px 0;
|
||||
color: transparent;/*remove default tick marks*/
|
||||
}
|
||||
.cr-slider::-ms-fill-lower {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 10px;
|
||||
}
|
||||
.cr-slider::-ms-fill-upper {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 10px;
|
||||
}
|
||||
.cr-slider::-ms-thumb {
|
||||
border: none;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border-radius: 50%;
|
||||
background: #ddd;
|
||||
margin-top:1px;
|
||||
}
|
||||
.cr-slider:focus::-ms-fill-lower {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.cr-slider:focus::-ms-fill-upper {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
/*******************************************/
|
||||
|
||||
/***********************************/
|
||||
/* Rotation Tools */
|
||||
/***********************************/
|
||||
.cr-rotate-controls {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
left: 5px;
|
||||
z-index: 1;
|
||||
}
|
||||
.cr-rotate-controls button {
|
||||
border: 0;
|
||||
background: none;
|
||||
}
|
||||
.cr-rotate-controls i:before {
|
||||
display: inline-block;
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-size: 22px;
|
||||
}
|
||||
.cr-rotate-l i:before {
|
||||
content: '↺';
|
||||
}
|
||||
.cr-rotate-r i:before {
|
||||
content: '↻';
|
||||
}
|
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/favicon-16x16.png
Normal file
After Width: | Height: | Size: 755 B |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/favicon.ico
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/img/default-banner.jpg
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/img/default.jpg
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/img/defaulticon.jpg
Normal file
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 7.4 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/img/discord_logo.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/img/discord_me_icon_128.png
Normal file
After Width: | Height: | Size: 823 B |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 5.6 KiB |
After Width: | Height: | Size: 21 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/img/og_logo.png
Normal file
After Width: | Height: | Size: 36 KiB |
1
60a94191-7984-483c-87ed-61e3c1b817ce/js/app.js
Normal file
7
60a94191-7984-483c-87ed-61e3c1b817ce/js/bootstrap-tagsinput.min.js
vendored
Normal file
1
60a94191-7984-483c-87ed-61e3c1b817ce/js/chart.js
Normal file
1
60a94191-7984-483c-87ed-61e3c1b817ce/js/croppie.min.js
vendored
Normal file
21
60a94191-7984-483c-87ed-61e3c1b817ce/js/sticky-promo.js
Normal file
|
@ -0,0 +1,21 @@
|
|||
var stickyPromoAnchor = $('.sticky-promo-anchor').offset();
|
||||
|
||||
$(window).scroll(function() {
|
||||
xPos = $(this).scrollTop();
|
||||
|
||||
stickyPromo(xPos, stickyPromoAnchor.top);
|
||||
});
|
||||
|
||||
function stickyPromo(xPos, anchorPos)
|
||||
{
|
||||
var offsetBy = 90;
|
||||
var offsetPos = anchorPos - offsetBy;
|
||||
|
||||
if (xPos > offsetPos) {
|
||||
$('.sticky-promo').css('position', 'fixed');
|
||||
$('.sticky-promo').css('top', offsetBy);
|
||||
} else {
|
||||
$('.sticky-promo').css('position', 'relative');
|
||||
$('.sticky-promo').css('top', 0);
|
||||
}
|
||||
}
|
1
60a94191-7984-483c-87ed-61e3c1b817ce/js/tag-manager.js
Normal file
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/mstile-144x144.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/mstile-150x150.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/mstile-310x150.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/mstile-310x310.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
60a94191-7984-483c-87ed-61e3c1b817ce/mstile-70x70.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
5
60a94191-7984-483c-87ed-61e3c1b817ce/robots.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
User-agent: *
|
||||
Disallow: /server/join/
|
||||
Disallow: /server/article/paginate/
|
||||
|
||||
Sitemap: https://discord.me/sitemap
|
36
60a94191-7984-483c-87ed-61e3c1b817ce/safari-pinned-tab.svg
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="659.000000pt" height="659.000000pt" viewBox="0 0 659.000000 659.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,659.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M3059 6106 c-2 -2 -54 -7 -116 -10 -62 -4 -118 -8 -125 -11 -7 -2
|
||||
-42 -6 -78 -10 -117 -11 -347 -54 -509 -94 -946 -236 -1689 -768 -2034 -1457
|
||||
-70 -141 -143 -351 -163 -474 -2 -14 -6 -35 -9 -47 -30 -131 -27 -470 5 -668
|
||||
17 -101 20 -116 51 -240 129 -513 421 -1061 859 -1615 94 -120 294 -354 380
|
||||
-444 189 -201 518 -515 558 -533 65 -29 164 1 201 61 13 20 51 177 107 431 47
|
||||
220 90 404 94 408 4 5 63 -3 131 -17 202 -41 354 -62 604 -81 67 -6 486 -5
|
||||
555 0 181 14 225 18 315 31 22 3 56 7 75 10 19 3 58 9 85 14 28 5 66 12 85 15
|
||||
128 21 366 84 536 141 365 122 742 317 999 517 28 21 65 51 84 65 170 132 380
|
||||
360 505 547 146 218 264 495 302 710 2 11 6 34 9 50 52 287 18 641 -92 935
|
||||
-36 95 -119 271 -152 319 -10 14 -38 57 -61 95 -264 418 -775 812 -1360 1051
|
||||
-164 67 -466 165 -560 181 -14 3 -38 9 -55 14 -16 5 -43 11 -60 14 -16 2 -51
|
||||
9 -76 15 -25 6 -61 13 -80 15 -19 3 -65 10 -104 16 -38 6 -86 12 -105 15 -75
|
||||
9 -147 18 -185 21 -54 5 -612 14 -616 10z m-229 -1210 c41 -3 89 -8 105 -11
|
||||
17 -3 41 -7 55 -9 79 -13 170 -31 230 -45 70 -18 70 -18 157 -45 308 -98 572
|
||||
-255 779 -460 207 -207 322 -420 365 -675 11 -64 13 -234 3 -301 -31 -235
|
||||
-155 -477 -342 -667 -110 -113 -163 -157 -283 -238 -83 -55 -304 -175 -323
|
||||
-175 -3 0 -25 -9 -49 -19 -77 -36 -340 -114 -427 -127 -19 -3 -42 -7 -50 -9
|
||||
-8 -2 -37 -7 -65 -10 -27 -4 -59 -8 -70 -10 -145 -23 -499 -23 -635 -1 -14 3
|
||||
-45 7 -70 10 -25 3 -54 8 -65 10 -11 2 -48 10 -83 16 -34 7 -64 11 -66 9 -2
|
||||
-4 -52 -222 -62 -279 -39 -202 -59 -244 -120 -256 -41 -7 -58 2 -140 79 -410
|
||||
384 -724 806 -881 1185 -57 139 -106 306 -118 407 -4 28 -8 58 -11 67 -3 9 -5
|
||||
70 -5 135 -1 385 186 727 546 999 177 133 409 249 637 319 48 14 95 28 105 30
|
||||
10 1 45 10 78 18 83 21 244 46 351 53 49 4 90 8 91 9 6 4 291 -3 363 -9z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |