Skip to content

Instantly share code, notes, and snippets.

@flxai
Last active September 29, 2019 21:49
Show Gist options
  • Save flxai/157b8943d07cfefe895e2dc76e8c2774 to your computer and use it in GitHub Desktop.
Save flxai/157b8943d07cfefe895e2dc76e8c2774 to your computer and use it in GitHub Desktop.
Talk to Clippy
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg8"
version="1.1"
viewBox="0 0 8.6063671 4.697506"
height="4.697506mm"
width="8.6063671mm">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-37.552543,-150.38367)"
id="layer1">
<path
id="path10"
d="m 46.024523,150.51618 h -8.33952 l 8.33952,4.4316"
style="fill:#ffffcf;fill-opacity:0.94117647;stroke:#000000;stroke-width:0.26499999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>
/* This is a Stylus CSS overlay for the page https://talktotransformer.com/ so you can talk to Clippy */
/* Style output text box */
#completion {
padding: 24px;
margin: 300px 0 600px;
background-color: #ffffcb;
border: 1px solid black;
border-radius: 8px;
position: relative;
overflow-wrap: break-word;
}
/* Remove Google Captcha badge */
.grecaptcha-badge {
display: none !important;
}
/* Remove heading */
#completion > div:first-of-type {
color: transparent;
background-image: url("https://camo.githubusercontent.com/9e85d9154ffc3b6f546379596b110ec2e04677f1/68747470733a2f2f666f786465706c6f792e66696c65732e776f726470726573732e636f6d2f323031362f30332f636c697070792e706e673f773d35383426683d353432");
position: absolute;
background-size: cover;
/* Original size */
/*
width: 362px;
height: 335px;
left: -400px;
*/
/* Scaled size */
width: 181px;
height: 167px;
left: -200px;
}
/* Style button */
form.v-form > div:last-of-type > button {
position: fixed;
bottom: -4px;
left: -4px;
z-index: 2;
}
form.v-form > div:last-of-type > button > div {
display: none;
}
.info {
background-color: rgba(0, 0, 0, 0) !important;
}
/* XP task bar */
form.v-form > div:last-of-type:after {
content : "";
width: 100%;
height: 100%;
position: fixed;
bottom: 0;
left: 0;
background-image: url("https://www.trzcacak.rs/myfile/full/263-2635764_windows-xp-desktop-transparent-windows-xp-taskbar-start.png");
background-size:cover;
background-position: bottom center;
pointer-events: none;
z-index: 1;
}
/* XP background image */
main > div:first-of-type {
background-image: url("http://wallpoper.com/images/00/41/69/73/windows-xp_00416973.jpg");
position: relative;
background-attachment: fixed;
background-size: cover;
}
/* Remove share button */
#completion > div:nth-of-type(3),
#completion ~ *,
main > div:first-of-type > div:first-of-type > div:last-of-type > div:first-of-type > div:first-of-type > div:first-of-type /* Who needs IDs if you have selectors? */
{
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment