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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
/* 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