Advertisement
nomskoo

plushie uwu ai codes - plus

Mar 28th, 2023 (edited)
1,762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.73 KB | None | 0 0
  1. NOTE: haiii this crd is a little complicated bc of the css frameworks but if u have any questions u can send me a ccat at crrdcore / send me a dm / a retrospring at soobinzz! also pls credit doiibahi / crrdcore when remaking this carrd it took me a looong time to make lol. also general disclaimer all positions were made to fit my personal devices the best you might have to change the positions to fit your devices better!
  2.  
  3. --- FONTS ---
  4. <style>
  5. @font-face {
  6. font-family: windows;
  7. src: url(https://dl.dropbox.com/s/cn0l1yjacta4whv/W95FA.otf);
  8. }
  9.  
  10. @font-face {
  11. font-family: Pixelated MS Sans Serif;
  12. src:url(ms_sans_serif.woff) format("woff");
  13. src:url(ms_sans_serif.woff2) format("woff2");
  14. }
  15.  
  16. @font-face {
  17. font-family: Chemre;
  18. src: url(https://dl.dropbox.com/s/a4vu0khvvhe5lwq/Chemre.ttf);
  19. }
  20.  
  21. @font-face {
  22. font-family: alstoria;
  23. src: url(https://dl.dropbox.com/s/8mxmroywtsttuc0/Alstoria%20Demo.ttf?);
  24. }
  25.  
  26. @font-face {
  27. font-family: dreams;
  28. src: url(https://dl.dropbox.com/s/i9lg3nchwvgi6p3/dream.ttf);
  29. }
  30. </style>
  31.  
  32. --- SOUND ---
  33. <script>
  34.  
  35. // Mouseover/ Click sound effect- by JavaScript Kit (www.javascriptkit.com)
  36. // Visit JavaScript Kit at http://www.javascriptkit.com/ for full source code
  37.  
  38. //** Usage: Instantiate script by calling: var uniquevar=createsoundbite("soundfile1", "fallbackfile2", "fallebacksound3", etc)
  39. //** Call: uniquevar.playclip() to play sound
  40.  
  41. var html5_audiotypes={ //define list of audio file extensions and their associated audio types. Add to it if your specified audio file isn't on this list:
  42. "mp3": "audio/mpeg",
  43. "mp4": "audio/mp4",
  44. "ogg": "audio/ogg",
  45. "wav": "audio/wav"
  46. }
  47.  
  48. function createsoundbite(sound){
  49. var html5audio=document.createElement('audio')
  50. if (html5audio.canPlayType){ //check support for HTML5 audio
  51. for (var i=0; i<arguments.length; i++){
  52. var sourceel=document.createElement('source')
  53. sourceel.setAttribute('src', arguments[i])
  54. if (arguments[i].match(/\.(\w+)$/i))
  55. sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
  56. html5audio.appendChild(sourceel)
  57. }
  58. html5audio.load()
  59. html5audio.playclip=function(){
  60. html5audio.pause()
  61. html5audio.currentTime=0
  62. html5audio.play()
  63. }
  64. return html5audio
  65. }
  66. else{
  67. return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}
  68. }
  69. }
  70.  
  71. //Initialize two sound clips with 1 fallback file each:
  72.  
  73. var mouseoversound=createsoundbite("https://cdn.discordapp.com/attachments/916511538410569829/1006909357981712414/mouse_click_fx.mp3")
  74. var clicksound=createsoundbite("https://cdn.discordapp.com/attachments/916511538410569829/1006909357981712414/mouse_click_fx.mp3")
  75.  
  76. </script>
  77.  
  78. --> INSERT THIS ON THE ONCLICK SETTING:
  79. clicksound.playclip();
  80.  
  81. --- TOP ---
  82. <link rel="stylesheet" href="https://unpkg.com/7.css">
  83. <div class="title-bar active" style ="background: #FF9EC1BA;">
  84. <div class="title-bar-text">☆</div>
  85. <div class="title-bar-controls">
  86. <button aria-label="Minimize"></button>
  87. <button aria-label="Maximize"></button>
  88. <a href="#home" onclick="clicksound.playclip()"><button aria-label="Close"></button></a>
  89. </div>
  90. </div>
  91.  
  92. --- MENU ---
  93. <link rel="stylesheet" href="https://unpkg.com/7.css">
  94. <ul role="menubar" class="can-hover" style ="background:linear-gradient(180deg, #FF9EC1BA 25%, #D4D4D4 100%);">
  95. <li role="menuitem" tabindex="0" aria-haspopup="true">
  96. File
  97. <ul role="menu">
  98. <li role="menuitem">
  99. <a href="#menubar">
  100. Open <span>Ctrl+O</span>
  101. </a>
  102. </li>
  103. <li role="menuitem">
  104. <a href="#menubar">
  105. Save <span>Ctrl+S</span>
  106. </a>
  107. </li>
  108. <li role="menuitem" class="has-divider">
  109. <a href="#menubar">
  110. Save As... <span>Ctrl+Shift+S</span>
  111. </a>
  112. </li>
  113. <li role="menuitem"><a href="#menubar">Exit</a></li>
  114. </ul>
  115. </li>
  116. <li role="menuitem" tabindex="0" aria-haspopup="true">
  117. Edit
  118. <ul role="menu">
  119. <li role="menuitem"><a href="#menubar">Undo</a></li>
  120. <li role="menuitem"><a href="#menubar">Copy</a></li>
  121. <li role="menuitem"><a href="#menubar">Cut</a></li>
  122. <li role="menuitem" class="has-divider"><a href="#menubar">Paste</a></li>
  123. <li role="menuitem"><a href="#menubar">Delete</a></li>
  124. <li role="menuitem"><a href="#menubar">Find...</a></li>
  125. <li role="menuitem"><a href="#menubar">Replace...</a></li>
  126. <li role="menuitem"><a href="#menubar">Go to...</a></li>
  127. </ul>
  128. </li>
  129. <li role="menuitem" tabindex="0" aria-haspopup="true">
  130. View
  131. <ul role="menu">
  132. <li role="menuitem" tabindex="0" aria-haspopup="true">
  133. Zoom
  134. <ul role="menu">
  135. <li role="menuitem"><button control-id="ControlID-45">Zoom In</button></li>
  136. <li role="menuitem"><button>Zoom Out</button></li>
  137. </ul>
  138. </li>
  139. <li role="menuitem"><a href="#menubar">Status Bar</a></li>
  140. </ul>
  141. </li>
  142. <li role="menuitem" tabindex="0" aria-haspopup="true">
  143. Help
  144. <ul role="menu">
  145. <li role="menuitem"><a href="#menubar">View Help</a></li>
  146. <li role="menuitem"><a href="#menubar">About</a></li>
  147. </ul>
  148. </li>
  149. </ul>
  150.  
  151. --- MAIN CONTAINER ---
  152. box-shadow: inset -1px -0px #999999, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  153.  
  154. --- BUBBLE NAME TEXT CHANGES ---
  155. #bubble {
  156. color:#FFB3CE;
  157. font-family: Pixelated MS Sans Serif;
  158. font-size: 2em;
  159. font-weight: bold;
  160. position: absolute;
  161. left: 5.4em;
  162. -webkit-filter: drop-shadow(1px 1px 2.5px #424242);
  163. }
  164.  
  165. @media only screen and (max-width: 600px) {
  166. #bubble {
  167. font-size: 2.5em;
  168. left: 3.8em;
  169. bottom: 6.9em;
  170. }
  171. }
  172.  
  173. --- SEARCH ---
  174. <input type="search" placeholder="Search 4 Vioo ☆" control-id="ControlID-55">
  175.  
  176. <style>
  177. #elementID {
  178. position: absolute;
  179. left: 10.8em;
  180. bottom: 15.6em;
  181. }
  182.  
  183. @media only screen and (max-width: 600px) {
  184. #elementID {
  185. left: 9.4em;
  186. bottom: 14.4em;
  187. }
  188. }
  189. </style>
  190.  
  191. --- IMAGE ---
  192. position: absolute;
  193. left: 16.3em;
  194. bottom: -4.5em;
  195. --> MOBILE SETTING:
  196. left: 15.1em;
  197. bottom: -1.7em;
  198.  
  199. --- ABOUT TEXT ---
  200. font-family: windows;
  201. height: 8em;
  202. padding: 5px;
  203. border: 2px inset;
  204. background: white;
  205. overflow-y: scroll;
  206. --> MOBILE SETTING:
  207. height: 9em;
  208.  
  209. --- ABOUT TEXT HIGHLIGHT ---
  210. font-family: Chemre;
  211. color: #FF80A6;
  212.  
  213. --- PROGRESS BAR ---
  214. <div role="progressbar" class="animate">
  215. <div style="width: 75%"></div>
  216. </div>
  217.  
  218. --- NAVIGATION BUTTONS ---
  219. font-family: Pixelated MS Sans Serif;
  220. border-radius: 3px 3px 0px 0px;
  221. box-shadow: inset -1px -0px #0a0a0a, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  222.  
  223. --- MUSIC PLAYER CHANGES ---
  224. #glenplayer02 {
  225. position: relative;
  226. bottom: 0;
  227. margin-bottom: 0;
  228. left: -3px;
  229. margin-left: 0.3em;
  230. right: 0;
  231. margin-right: 0em;
  232. display:flex;
  233. background: #C2C2C2;
  234. padding: 1px;
  235. border: 3px solid;
  236. border-style: inset;
  237. width: 150px;
  238. }
  239.  
  240. @media only screen and (max-width: 600px) {
  241. #glenplayer02 {
  242. width: 140px;
  243. bottom: -0.2em;
  244. }
  245. }
  246.  
  247. --- VIO FANCLUB CONTAINER ---
  248. width: 30%;
  249. height: 17.2em;
  250. border: 3px inset;
  251. border-radius: 10px;
  252. position: absolute;
  253. left: 6px;
  254. bottom: 3.4em;
  255. --> MOBILE SETTINGS:
  256. height: 17.2em;
  257. bottom: 2.9em;
  258.  
  259. --- JOIN THE CLUB ---
  260. <link
  261. rel="stylesheet"
  262. href="https://unpkg.com/98.css"
  263. ><div class="field-row-stacked" style="width: 100px">
  264. <label for="text22">Email</label>
  265. <input id="text22" type="email" />
  266. </div>
  267. <div class="field-row-stacked" style="width: 100px">
  268. <label for="text23">Username</label>
  269. <input id="text23" type="text" />
  270. </div>
  271. <div class="field-row-stacked" style="width: 100px">
  272. <label for="text24">Password</label>
  273. <input id="text24" type="password" />
  274. </div>
  275.  
  276. <style>
  277. @media only screen and (max-width: 600px) {
  278. #text22, #text23, #text24 {
  279. width: 90px;
  280. }
  281. }
  282. </style>
  283.  
  284. --- SUBMIT BUTTON ---
  285. <link rel="stylesheet" href="https://unpkg.com/7.css"><button control-id="ControlID-12" onclick="clicksound.playclip()">Submit</button>
  286.  
  287. --- TOP1 CONTAINER---
  288. width: 50%;
  289. position: absolute;
  290. right: 5em;
  291. bottom: 21em;
  292. --> MOBILE SETTINGS:
  293. width: 52%;
  294. bottom: 20.4em;
  295.  
  296. --- TOP EMBED ---
  297. <link rel="stylesheet" href="https://unpkg.com/7.css">
  298. <div class="title-bar active" style ="background: #FF9EC1;">
  299. <div class="title-bar-text">☆☆</div>
  300. <div class="title-bar-controls">
  301. <a href="#home" onclick="clicksound.playclip()">
  302. <button aria-label="Minimize"></button></a>
  303. </div>
  304. </div>
  305.  
  306. --- BYF INFO CONTAINER ---
  307. width: 50%;
  308. height: 7em;
  309. border-radius: 0 px 0px 3px 3px;
  310. box-shadow: inset -1px -0px #999999, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  311. position: absolute;
  312. right: 5em;
  313. bottom: 14em;
  314. overflow-y: scroll;
  315. --> MOBILE SETTINGS:
  316. width: 52%;
  317. bottom: 13.4em;
  318.  
  319. --- BYF, DFI, ULTS, LOVES TEXT ---
  320. font-family: windows;
  321. padding: 5px;
  322. border: 2px inset;
  323. background: white;
  324.  
  325. --- BYF, DFI, ULTS, LOVES BOLD ---
  326. font-family: dreams;
  327. font-size: 1.5em;
  328.  
  329. --- BYF, DFI, ULTS, LOVES HIGHLIGHT ---
  330. font-family: alstoria;
  331. font-size: 1.3em;
  332. color: #FF80A6;
  333.  
  334. --- TOP2 CONTAINER ---
  335. width: 50%;
  336. position: absolute;
  337. right: -3em;
  338. bottom: 12.9em;
  339. --> MOBILE SETTINGS:
  340. width: 52%;
  341. bottom: 12.3em;
  342.  
  343. --- TOP2 EMBED ---
  344. <link rel="stylesheet" href="https://unpkg.com/7.css">
  345. <div class="title-bar active" style ="background: #FF9EC1;">
  346. <div class="title-bar-text">☆☆</div>
  347. <div class="title-bar-controls">
  348. <a href="#home" onclick="clicksound.playclip()">
  349. <button aria-label="Minimize"></button></a>
  350. </div>
  351. </div>
  352.  
  353. --- DFI INFO CONTAINER ---
  354. width: 50%;
  355. height: 7em;
  356. border-radius: 0px 0px 3px 3px;
  357. box-shadow: inset -1px -0px #999999, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  358. position: absolute;
  359. right: -3em;
  360. bottom: 5.9em;
  361. overflow-y: scroll;
  362. --> MOBILE SETTINGS:
  363. width: 52%;
  364. bottom: 5.3em;
  365.  
  366. --- HIYYIH IMAGE ---
  367. border-radius: 0px 15px;
  368. position: absolute;
  369. left: 10.8em;
  370. bottom: 5.3em;
  371. --> MOBILE SETTINGS:
  372. left: 9.4em;
  373. bottom: 5.89em;
  374.  
  375. --- TOP3 CONTAINER ---
  376. width: 50%;
  377. position: absolute;
  378. right: 5em;
  379. bottom: 12.9em;
  380. --> MOBILE SETTINGS:
  381. width: 52%;
  382. bottom: 12.3em;
  383.  
  384. --- TOP3 EMBED ---
  385. <link rel="stylesheet" href="https://unpkg.com/7.css">
  386. <div class="title-bar active" style ="background: #FF9EC1;">
  387. <div class="title-bar-controls">
  388. <a href="#elementID" onclick="clicksound.playclip()">
  389. <button aria-label="Minimize"></button></a>
  390. </div>
  391. <div class="title-bar-text">☆☆☆</div>
  392. </div>
  393.  
  394. --- LOVES INFO CONTAINER ---
  395. width: 50%;
  396. height: 7em;
  397. border-radius: 0px 0px 3px 3px;
  398. box-shadow: inset -1px -0px #999999, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  399. position: absolute;
  400. right: 5em;
  401. bottom: 5.9em;
  402. overflow-y: scroll;
  403. --> MOBILE SETTINGS:
  404. width: 52%;
  405. bottom: 5.3em;
  406.  
  407. --- TOP4 CONTAINER ---
  408. width: 50%;
  409. position: absolute;
  410. right: -3em;
  411. bottom: 21em;
  412. --> MOBILE SETTINGS:
  413. width: 52%;
  414. bottom: 20.4em;
  415.  
  416. --- TOP4 EMBED ---
  417. <link rel="stylesheet" href="https://unpkg.com/7.css">
  418. <div class="title-bar active" style ="background: #FF9EC1;">
  419. <div class="title-bar-text">☆☆☆</div>
  420. <div class="title-bar-controls">
  421. <a href="#elementID" onclick="clicksound.playclip()">
  422. <button aria-label="Minimize"></button></a>
  423. </div>
  424. </div>
  425.  
  426. --- ULTS INFO CONTAINER ---
  427. width: 50%;
  428. height: 7em;
  429. border-radius: 0px 0px 3px 3px;
  430. box-shadow: inset -1px -0px #999999, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  431. position: absolute;
  432. right: -3em;
  433. bottom: 14em;
  434. overflow-y: scroll;
  435. --> MOBILE SETTINGS:
  436. width: 52%;
  437. bottom: 13.4em;
  438.  
  439. --- HYUKA IMAGE ---
  440. border-radius: 15px 0px;
  441. position: absolute;
  442. left: 28.8em;
  443. bottom: 5.3em;
  444. --> MOBILE SETTINGS:
  445. left: 24.3em;
  446. bottom: 5.9em;
  447.  
  448. ---TOP5 CONTAINER ---
  449. width: 70%;
  450. position: absolute;
  451. right: -1.5em;
  452. bottom: 16em;
  453.  
  454. --- TOP5 EMBED ---
  455. <link rel="stylesheet" href="https://unpkg.com/7.css">
  456. <div class="title-bar active" style ="background: #FF9EC1;">
  457. <div class="title-bar-text">☆☆☆☆</div>
  458. <div class="title-bar-controls">
  459. <a href="#home" onclick="clicksound.playclip()">
  460. <button aria-label="Minimize"></button></a>
  461. </div>
  462. </div>
  463.  
  464. --- RATE INFO CONTAINER ---
  465. width: 70%;
  466. height: 9em;
  467. border-radius: 0px 0px 3px 3px;
  468. box-shadow: inset -1px -0px #999999, inset 1px 1px #fff, inset -2px -0px grey, inset 2px 2px #dfdfdf;
  469. position: absolute;
  470. right: -1.5em;
  471. bottom: 7em;
  472. overflow-y: scroll;
  473. --> MOBILE SETTINGS:
  474. padding-right: 1px;
  475.  
  476. --- RATE TEXT ---
  477. font-family: windows;
  478. height: 15.5em;
  479. padding: 5px;
  480. border: 2px inset;
  481. background: white;
  482. --> MOBILE SETTINGS:
  483. height: 16.5em;
  484.  
  485. --- RATE BOLD ---
  486. font-family: dreams;
  487.  
  488. --- RATE LINK ---
  489. color: #4F4F4F;
  490.  
  491. --- RATE HIGHLIGHT ---
  492. font-family: Chemre;
  493. font-size: 1.2em;
  494. color: #FF80A6;
  495.  
  496. --- RATE OPTION ---
  497. <select control-id="ControlID-33">
  498. <option>5 - Incredible!</option>
  499. <option>4 - Great!</option>
  500. <option selected="">3 - Pretty good</option>
  501. <option>2 - Not so great</option>
  502. <option>1 - Unfortunate</option>
  503. </select>
  504.  
  505. <style>
  506. #elementID {
  507. position: absolute;
  508. left: 1em;
  509. bottom: 8.4em;
  510. }
  511. </style>
  512.  
  513. --- BOTTOM ---
  514. border-radius: 0px 0px 5px 5px;
  515.  
  516. --- CREDIT BUTTON ---
  517. font-family: windows;
  518. text-align: left;
  519. border: 2.5px inset;
  520.  
  521. --- VOLUME SLIDER ---
  522. <div class="field-row" style="width: 200px">
  523. <label for="range25">Volume:</label>
  524. <label for="range26">Low</label>
  525. <input id="range26" type="range" min="1" max="11" value="5" />
  526. <label for="range27">High</label>
  527. </div>
  528.  
  529. --- DRAGGABLE ---
  530. <script src="https://code.jquery.com/jquery-3.6.0.js"></script>
  531. <script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js"></script>
  532. <script>
  533. $( function() {
  534. $( "#elementID" ).draggable();
  535. } );
  536. $( function() {
  537. $( "#elementID" ).draggable();
  538. } );
  539. </script>
  540.  
  541. --- ANI1 ---
  542. <style>
  543. #elementID, #elementID, #elementID, #elementID, #elementID, #elementID {
  544. -webkit-animation: fade-in 1.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
  545. animation: fade-in 1.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
  546. }
  547.  
  548. /* ----------------------------------------------
  549. * Generated by Animista on 2023-3-26 20:52:17
  550. * Licensed under FreeBSD License.
  551. * See http://animista.net/license for more info.
  552. * w: http://animista.net, t: @cssanimista
  553. * ---------------------------------------------- */
  554.  
  555. /**
  556. * ----------------------------------------
  557. * animation fade-in
  558. * ----------------------------------------
  559. */
  560. @-webkit-keyframes fade-in {
  561. 0% {
  562. opacity: 0;
  563. }
  564. 100% {
  565. opacity: 1;
  566. }
  567. }
  568. @keyframes fade-in {
  569. 0% {
  570. opacity: 0;
  571. }
  572. 100% {
  573. opacity: 1;
  574. }
  575. }
  576. </style>
  577.  
  578. --- ANI2 ---
  579. <style>
  580. #elementID, #elementID, #elementID, #elementID {
  581. -webkit-animation: fade-in 1.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
  582. animation: fade-in 1.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s both;
  583. }
  584.  
  585. /* ----------------------------------------------
  586. * Generated by Animista on 2023-3-26 20:53:21
  587. * Licensed under FreeBSD License.
  588. * See http://animista.net/license for more info.
  589. * w: http://animista.net, t: @cssanimista
  590. * ---------------------------------------------- */
  591.  
  592. /**
  593. * ----------------------------------------
  594. * animation fade-in
  595. * ----------------------------------------
  596. */
  597. @-webkit-keyframes fade-in {
  598. 0% {
  599. opacity: 0;
  600. }
  601. 100% {
  602. opacity: 1;
  603. }
  604. }
  605. @keyframes fade-in {
  606. 0% {
  607. opacity: 0;
  608. }
  609. 100% {
  610. opacity: 1;
  611. }
  612. }
  613. </style>
  614.  
  615. --- IMAGE ANI ---
  616. <style>
  617. #elementID, #elementID {
  618. -webkit-animation: fade-in 1.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
  619. animation: fade-in 1.1s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
  620. }
  621.  
  622. /* ----------------------------------------------
  623. * Generated by Animista on 2023-3-26 20:55:26
  624. * Licensed under FreeBSD License.
  625. * See http://animista.net/license for more info.
  626. * w: http://animista.net, t: @cssanimista
  627. * ---------------------------------------------- */
  628.  
  629. /**
  630. * ----------------------------------------
  631. * animation fade-in
  632. * ----------------------------------------
  633. */
  634. @-webkit-keyframes fade-in {
  635. 0% {
  636. opacity: 0;
  637. }
  638. 100% {
  639. opacity: 1;
  640. }
  641. }
  642. @keyframes fade-in {
  643. 0% {
  644. opacity: 0;
  645. }
  646. 100% {
  647. opacity: 1;
  648. }
  649. }
  650. </style>
  651.  
  652. --- CUSTOM HIGHLIGHT ---
  653. <style>
  654. ::-moz-selection { /* EDIT THIS ONE TOO */
  655. color: #4F4F4F;
  656. background: #FF80A6;
  657. }
  658.  
  659. ::selection {
  660. color: #4F4F4F;
  661. background: #FF80A6;
  662. }
  663. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement