Advertisement
Guest User

i fucked up

a guest
Mar 18th, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 64.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!--PAGE THEME #10: Aperture by @nonspace.
  4. Don't steal.
  5. Don't claim as your own.
  6. Don't use as base code.
  7. Editing for personal use is fine!-->
  8.  
  9. <html>
  10. <head>
  11. <meta charset="utf-8">
  12. <meta name="viewport" content="width=device-width">
  13. <link rel="icon" type="image/png" href="{Favicon}">
  14. <title>{Title}</title>
  15.  
  16. <!--FONTS-->
  17. <link href="https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,700,700i&amp;subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese" rel="stylesheet">
  18. <link href="https://fonts.googleapis.com/css?family=Chivo:400,400i,700|Playfair+Display:400,400i,700,700i|Roboto+Slab:400,700|Source+Code+Pro:400,700&amp;subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese" rel="stylesheet">
  19. <link href="https://fonts.googleapis.com/css?family=Raleway:400,400i,700,700i" rel="stylesheet">
  20.  
  21. <!--FONT AWESOME-->
  22. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" crossorigin="anonymous">
  23.  
  24. <!--JQUERY-->
  25. <script src="https://code.jquery.com/jquery-3.1.0.js"></script>
  26.  
  27. <style>
  28. ::-webkit-scrollbar {
  29. width: 5px;
  30. border: 2px solid #f5f5f5;
  31. background-color: #acacac;
  32. }
  33.  
  34. ::-webkit-scrollbar-thumb {
  35. border-radius: 6px;
  36. background-color: #acacac;
  37. }
  38.  
  39. ::-webkit-scrollbar:horizontal {
  40. height: 5px;
  41. }
  42. /*SETTINGS & COLORS*/
  43. :root {
  44. /*colors == change these per character == */
  45. --accentColorOne: 88,121,130; /*CHARACTER 1*/
  46. --accentColorTwo: 158,42,43;/*CHARACTER 2*/
  47. --accentColorThree: 224,159,62;/*CHARACTER 3*/
  48. --accentColorFour: 167,167,167;/*CHARACTER 4*/
  49. --accentColorFive: 187,200,209;/*CHARACTER 5*/
  50.  
  51.  
  52. --accentTextOne: #fff; /*text color*/
  53.  
  54. --sidebar: #fff;
  55. --colorTextSidebar: #000;
  56.  
  57. --colorSocial: #fff; /*dark back*/
  58. --colorSocialLight: #000;
  59.  
  60. --colorTitle: #fff; /*dark*/
  61. --colorTitleLight: #646464; /*dark*/
  62.  
  63. --colorTriangle: 121, 122, 124; /*ODD BARS*/
  64. --colorTriangleb:55, 55, 56;/*EVEN BARS*/
  65.  
  66. /*fonts*/
  67. --fontSize: 14px;
  68. --lineHeight: 150%;
  69. --fontOne: 'Raleway';
  70. --fontTwo: 'Roboto Slab';
  71. --fontQuote: 'Playfair Display';
  72.  
  73. /*grayscale*/
  74. --grayscalePortrait: 0%; /*0 - 100%*/
  75. --grayscaleThumbnails: 90%; /*0 - 100%*/
  76. }
  77.  
  78. /*GENERAL*/
  79. *{
  80. box-sizing: border-box;
  81. padding: 0;
  82. margin: 0;
  83. -webkit-font-smoothing: antialiased;
  84. -moz-osx-font-smoothing: grayscale;
  85. text-rendering: optimizeLegibility;
  86. }
  87.  
  88. h1, h2 {
  89. font-family: var(--fontTwo);
  90. font-weight: normal;
  91. }
  92.  
  93. h1 {
  94. font-size: 10vh;
  95. color: var(--colorTitle);
  96. line-height: 8vh;
  97. }
  98.  
  99.  
  100.  
  101. /*ANIMATION KEYFRAMES*/
  102. @-webkit-keyframes fadeIn {
  103. 0% { opacity: 0; }
  104. 20% { opacity: 0; }
  105. 40% { opacity: 0.3; }
  106. 60% { opacity: 0.5; }
  107. 80% { opacity: 0.9; }
  108. 100% { opacity: 1; }
  109. }
  110. @keyframes fadeIn {
  111. 0% { opacity: 0; }
  112. 20% { opacity: 0; }
  113. 40% { opacity: 0.3; }
  114. 60% { opacity: 0.5; }
  115. 80% { opacity: 0.9; }
  116. 100% { opacity: 1; }
  117. }
  118.  
  119. body {
  120. font-family: var(--fontOne);
  121. font-size: var(--fontSize);
  122. color: #1e1e1e;
  123. }
  124.  
  125. #wrapper {
  126. position: relative;
  127. width: 100%;
  128. height: 100vh;
  129. display: flex;
  130. overflow: hidden;
  131. }
  132.  
  133. nav {
  134. min-width: 50px;
  135. max-width: 50px;
  136. height: 100%;
  137. background: #111;
  138. padding: 15px 0;
  139. }
  140.  
  141. nav li {
  142. width: 100%;
  143. display: flex;
  144. flex-direction: column;
  145. align-items: center;
  146. margin: 0 0 15px;
  147. }
  148.  
  149. nav a i {
  150. width: 100%;
  151. margin: 0 auto;
  152. color: rgba(255,255,255,0.9);
  153. font-size: 18px;
  154. }
  155.  
  156. main {
  157. position: relative;
  158. flex: 1;
  159. /*min-width: 850px;*/
  160. background: #f7f7f7;
  161. webkit-animation-duration: 0.8s;
  162. animation-name: fadeIn;
  163. animation-duration: 0.8s;
  164. }
  165.  
  166. aside {
  167. position: relative;
  168. width: 150px;
  169. height: 100%;
  170. overflow-y: auto;
  171. }
  172.  
  173. aside li {
  174. list-style-type: none;
  175. line-height: 100%;
  176. font-size: 0;
  177. }
  178.  
  179. aside li img {
  180. width: 150px;
  181. height: 150px;
  182. }
  183.  
  184. aside li img,
  185. .connections img,
  186. .popup-inner img {
  187. object-fit: cover;
  188. o-object-fit: cover;
  189. -webkit-filter: grayscale(var(--grayscaleThumbnails));
  190. filter: grayscale(var(--grayscaleThumbnails));
  191. }
  192.  
  193. /*main content*/
  194. .tab {
  195. position: relative;
  196. display: none;
  197. width: 100%;
  198. height: 100%;
  199. webkit-animation-duration: 0.8s;
  200. animation-name: fadeIn;
  201. animation-duration: 0.8s;
  202. overflow-y: auto;
  203. }
  204.  
  205. .tab.current {
  206. display: flex;
  207. flex-wrap: wrap;
  208. }
  209.  
  210. .portrait-row {
  211. position: relative;
  212. flex: 1;
  213. display: flex;
  214. flex-direction: column;
  215. }
  216.  
  217. .portrait-inner {
  218. position: relative;
  219. height: calc(100vh - 250px);
  220. }
  221.  
  222. .portrait-inner img.big {
  223. height: 100%;
  224. width: 100%;
  225. object-fit: none
  226. ;
  227. o-object-fit: cover;
  228. -webkit-filter: grayscale(var(--grayscalePortrait));
  229. filter: grayscale(var(--grayscalePortrait));
  230. }
  231.  
  232. .overlay {
  233. background: url(https://www.transparenttextures.com/patterns/graphy-dark.png);
  234. height: 100%;
  235. width: 100%;
  236. position: absolute;
  237. top: 0;
  238. opacity: 0.4;
  239. }
  240.  
  241. .triangle {
  242. position: absolute;
  243. width: 100%;
  244. height: 100%;
  245. width: 0;
  246. height: 0;
  247. border-style: solid;
  248. border-width: 250px 250px 0 0;
  249. border-color: rgb(var(--colorTriangle)) transparent transparent transparent;
  250. top: 0;
  251. opacity: 0.5
  252. }
  253.  
  254. .title {
  255. position: absolute;
  256. top: 50px;
  257. left: 50px;
  258. }
  259.  
  260. .title h1 {
  261. text-shadow: 5px 5px 0px rgba(17,17,17,0.5);
  262. letter-spacing: 10px
  263. }
  264.  
  265. .links {
  266. position: absolute;
  267. top: 0;
  268. right: 0;
  269. text-align: right;
  270. margin: 15px 25px;
  271. z-index: 1;
  272. }
  273.  
  274. .links a {
  275. color: var(--colorSocial);
  276. font-size: 25px;
  277. text-decoration: none;
  278. padding: 0 8px;
  279. opacity: 0.5;
  280. }
  281.  
  282. .stats {
  283. position: absolute;
  284. bottom: 0;
  285. right: 0;
  286. height: 100%;
  287. padding: 0 15px;
  288. display: flex;
  289. }
  290.  
  291. .bar {
  292. height: 100%;
  293. display: flex;
  294. margin: 0 0 0 20px;
  295. margin-top: auto;
  296. align-items: flex-end;
  297. }
  298.  
  299. .bar div {
  300. position: relative;
  301. width: 50px;
  302. background: rgba(var(--colorTriangle),0.80);
  303. }
  304.  
  305. .bar span {
  306. position: absolute;
  307. font-family: var(--fontTwo);
  308. text-transform: uppercase;
  309. letter-spacing: 2px;
  310. text-shadow: 2px 3px 0px rgba(17,17,17,0.5);
  311. left: 60px;
  312. bottom: 10px;
  313. -webkit-transform: rotate(-90deg);
  314. -ms-transform: rotate(-90deg);
  315. transform: rotate(-90deg);
  316. transform-origin: bottom left;
  317. height: 50px;
  318. width: 100vh;
  319. color: var(--colorTitle);
  320. font-size: 2vh;
  321. opacity: 1;
  322. }
  323.  
  324. .bar:nth-of-type(1) div {
  325. height: 5%;
  326. }
  327. .bar:nth-of-type(2) div {
  328. height: 5%;
  329. }
  330. .bar:nth-of-type(3) div {
  331. height: 5%;
  332. }
  333. .bar:nth-of-type(4) div {
  334. height: 5%;
  335. }
  336.  
  337. .bar:nth-of-type(even) div {
  338. background: rgba(var(--colorTriangleb), 0.80);
  339. }
  340.  
  341. /*connections*/
  342. .connections {
  343. position: absolute;
  344. left: 20px;
  345. bottom: 20px;
  346. max-width: 300px;
  347. display: flex;
  348. flex-wrap: wrap-reverse;
  349. }
  350.  
  351. .connections img {
  352. width: 10vh;
  353. height: 10vh;
  354. object-fit: cover;
  355. o-object-fit: cover;
  356. margin: 10px 10px 0 0;
  357. border: 5px solid rgba( var(--colorTriangle),0.5);
  358. -webkit-background-clip: padding-box; /* for Safari */
  359. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  360. }
  361.  
  362. .text-row {
  363. position: relative;
  364. height: 250px;
  365. display: flex;
  366. padding: 35px 50px;
  367. color: var(--accentTextOne);
  368. background: rgb(var(--accentColorOne));
  369. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  370. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  371. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  372. }
  373.  
  374. .text-row-two {
  375. position: relative;
  376. height: 250px;
  377. display: flex;
  378. padding: 35px 50px;
  379. color: var(--accentTextOne);
  380. background: rgb(var(--accentColorTwo));
  381. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  382. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  383. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  384. }
  385.  
  386. .text-row-three {
  387. position: relative;
  388. height: 250px;
  389. display: flex;
  390. padding: 35px 50px;
  391. color: var(--accentTextOne);
  392. background: rgb(var(--accentColorThree));
  393. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  394. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  395. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  396. }
  397. .text-row-four {
  398. position: relative;
  399. height: 250px;
  400. display: flex;
  401. padding: 35px 50px;
  402. color: var(--accentTextOne);
  403. background: rgb(var(--accentColorFour));
  404. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  405. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  406. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  407. }
  408.  
  409. .text-row-five {
  410. position: relative;
  411. height: 250px;
  412. display: flex;
  413. padding: 35px 50px;
  414. color: var(--accentTextOne);
  415. background: rgb(var(--accentColorFive));
  416. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  417. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  418. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  419. }
  420.  
  421. .text-row-six {
  422. position: relative;
  423. height: 250px;
  424. display: flex;
  425. padding: 35px 50px;
  426. color: var(--accentTextOne);
  427. background: rgb(var(--accentColorSix));
  428. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  429. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  430. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  431. }
  432.  
  433. .text-row-seven {
  434. position: relative;
  435. height: 250px;
  436. display: flex;
  437. padding: 35px 50px;
  438. color: var(--accentTextOne);
  439. background: rgb(var(--accentColorSeven));
  440. -webkit-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  441. -moz-box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  442. box-shadow: -1px -10px 0px 0px rgba(0,0,0,0.3);
  443. }
  444.  
  445. .text-title li {
  446. list-style-type: none;
  447. font-family: var(--fontTwo);
  448. letter-spacing: 2px;
  449. padding: 3px 0px;
  450. font-size: calc(var(--fontSize) - 3px);
  451. }
  452.  
  453. .text-title li:first-child {
  454. position: relative;
  455. padding-bottom: 10px;
  456. padding-top: 0;
  457. text-transform: uppercase;
  458. margin-bottom: 15px;
  459. font-size: var(--fontSize);
  460. }
  461.  
  462. .text-title li:first-child:after {
  463. content: '';
  464. height: 2px;
  465. background: #fff;
  466. width: 40%;
  467. position: absolute;
  468. bottom: 0;
  469. left: 0;
  470. }
  471.  
  472. .text-column {
  473. flex: 1;
  474. overflow-y: auto;
  475. }
  476.  
  477. .text {
  478. position: relative;
  479. column-count: 2;
  480. padding-left: 35px;
  481. column-gap: 25px;
  482. overflow-y: scroll;
  483. font-size: calc(var(--fontSize) - 1px);
  484. line-height: var(--lineHeight);
  485. }
  486.  
  487. .text p {
  488. margin-bottom: 15px;
  489. }
  490.  
  491. /*info side*/
  492. .info-column {
  493. display: flex;
  494. flex-direction: column;
  495. width: 350px;
  496. background: rgb(var(--accentColorOne));
  497. z-index: 1;
  498. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  499. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  500. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  501. height: 100vh;
  502. }
  503.  
  504. .info-column-two {
  505. display: flex;
  506. flex-direction: column;
  507. width: 350px;
  508. background: rgb(var(--accentColorTwo));
  509. z-index: 1;
  510. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  511. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  512. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  513. height: 100vh;
  514. }
  515.  
  516. .info-column-three {
  517. display: flex;
  518. flex-direction: column;
  519. width: 350px;
  520. background: rgb(var(--accentColorThree));
  521. z-index: 1;
  522. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  523. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  524. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  525. height: 100vh;
  526. }
  527. .info-column-four {
  528. display: flex;
  529. flex-direction: column;
  530. width: 350px;
  531. background: rgb(var(--accentColorFour));
  532. z-index: 1;
  533. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  534. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  535. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  536. height: 100vh;
  537. }
  538.  
  539. .info-column-five {
  540. display: flex;
  541. flex-direction: column;
  542. width: 350px;
  543. background: rgb(var(--accentColorFive));
  544. z-index: 1;
  545. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  546. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  547. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  548. height: 100vh;
  549. }
  550.  
  551. .info-column-six {
  552. display: flex;
  553. flex-direction: column;
  554. width: 350px;
  555. background: rgb(var(--accentColorSix));
  556. z-index: 1;
  557. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  558. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  559. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  560. height: 100vh;
  561. }
  562.  
  563. .info-column-seven {
  564. display: flex;
  565. flex-direction: column;
  566. width: 350px;
  567. background: rgb(var(--accentColorSix));
  568. z-index: 1;
  569. -webkit-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  570. -moz-box-shadow: 0px 0px 100px -35px rgba(0,0,0,0.3);
  571. box-shadow: -5px 0px 20px 0px rgba(0,0,0,0.2);
  572. height: 100vh;
  573. }
  574.  
  575. .quote,
  576. .table,
  577. .traits,
  578. .links {
  579. width: 100%;
  580. }
  581.  
  582. .quote {
  583. background: rgba(0,0,0,0.1);
  584. padding: 25px 25px;
  585. font-family: var(--fontQuote);
  586. background: var(--background);
  587. }
  588.  
  589. .quote h3 {
  590. font-weight: normal;
  591. font-style: italic;
  592. font-size: calc(var(--fontSize) + 6px);
  593. color: rgba(255,255,255,0.8);
  594. }
  595.  
  596. .table {
  597. position: relative;
  598. background: var(--sidebar);
  599. color: var(--colorTextSidebar);
  600. overflow-y: auto;
  601. flex-: 1;
  602. }
  603.  
  604. .table table {
  605. width: 100%;
  606. /*border-collapse: collapse;*/
  607. }
  608.  
  609. .table td {
  610. width: 50%;
  611. }
  612.  
  613. .table td {
  614. padding: 5px 25px;
  615. list-style-type: none;
  616. line-height: calc(var(--fontSize) + 5px);
  617. }
  618.  
  619. .table tr td:first-child {
  620. font-family: var(--fontTwo);
  621. text-transform: uppercase;
  622. letter-spacing: 2px;
  623. font-size: calc(var(--fontSize) - 2px);
  624. }
  625.  
  626. .table tr td:nth-child(2) {
  627. background: rgba(0,0,0,0.03);
  628. }
  629.  
  630. .table tr:nth-child(even) td:first-child {
  631. background: rgba(0,0,0,0.05);
  632. }
  633.  
  634. .table tr:nth-child(odd) td:first-child {
  635. background: rgba(0,0,0,0);
  636. }
  637.  
  638. /*POPUPS*/
  639. .popup {
  640. width: 100%;
  641. height: 100%;
  642. background: rgba(0,0,0,0.5);
  643. position: fixed;
  644. z-index: 999;
  645. top: 0;
  646. bottom: 0;
  647. display: none;
  648. }
  649.  
  650. .popup-inner {
  651. position: relative;
  652. width: 500px;
  653. height: 280px;
  654. display: flex;
  655. background: rgb(var(--accentColorOne));
  656. color: var(--accentTextOne);
  657. margin: auto;
  658. border: 10px solid rgba( var(--colorTriangle),0.5);
  659. -webkit-background-clip: padding-box; /* for Safari */
  660. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  661. }
  662.  
  663.  
  664. .popup-inner-two {
  665. position: relative;
  666. width: 500px;
  667. height: 280px;
  668. display: flex;
  669. background: rgb(var(--accentColorTwo));
  670. color: var(--accentTextOne);
  671. margin: auto;
  672. border: 10px solid rgba( var(--colorTriangle),0.5);
  673. -webkit-background-clip: padding-box; /* for Safari */
  674. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  675. }
  676.  
  677. .popup-inner-three {
  678. position: relative;
  679. width: 500px;
  680. height: 280px;
  681. display: flex;
  682. background: rgb(var(--accentColorThree));
  683. color: var(--accentTextOne);
  684. margin: auto;
  685. border: 10px solid rgba( var(--colorTriangle),0.5);
  686. -webkit-background-clip: padding-box; /* for Safari */
  687. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  688. }
  689.  
  690. .popup-inner-four {
  691. position: relative;
  692. width: 500px;
  693. height: 280px;
  694. display: flex;
  695. background: rgb(var(--accentColorFour));
  696. color: var(--accentTextOne);
  697. margin: auto;
  698. border: 10px solid rgba( var(--colorTriangle),0.5);
  699. -webkit-background-clip: padding-box; /* for Safari */
  700. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  701. }
  702.  
  703. .popup-inner-five {
  704. position: relative;
  705. width: 500px;
  706. height: 280px;
  707. display: flex;
  708. background: rgb(var(--accentColorFive));
  709. color: var(--accentTextOne);
  710. margin: auto;
  711. border: 10px solid rgba( var(--colorTriangle),0.5);
  712. -webkit-background-clip: padding-box; /* for Safari */
  713. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  714. }
  715.  
  716. .popup-inner-six {
  717. position: relative;
  718. width: 500px;
  719. height: 280px;
  720. display: flex;
  721. background: rgb(var(--accentColorSix));
  722. color: var(--accentTextOne);
  723. margin: auto;
  724. border: 10px solid rgba( var(--colorTriangle),0.5);
  725. -webkit-background-clip: padding-box; /* for Safari */
  726. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  727. }
  728.  
  729. .popup-inner-seven {
  730. position: relative;
  731. width: 500px;
  732. height: 280px;
  733. display: flex;
  734. background: rgb(var(--accentColorSix));
  735. color: var(--accentTextOne);
  736. margin: auto;
  737. border: 10px solid rgba( var(--colorTriangle),0.5);
  738. -webkit-background-clip: padding-box; /* for Safari */
  739. background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  740. }
  741.  
  742.  
  743. .popup-inner img {
  744. width: 200px;
  745. height: 260px;
  746. filter: grayscale(0);
  747. filter: grayscale(0);
  748. }
  749.  
  750. .popup-inner-two img {
  751. width: 200px;
  752. height: 260px;
  753. filter: grayscale(0);
  754. filter: grayscale(0);
  755. }
  756.  
  757. .popup-inner-three img {
  758. width: 200px;
  759. height: 260px;
  760. filter: grayscale(0);
  761. filter: grayscale(0);
  762. }
  763.  
  764. .popup-inner-four img {
  765. width: 200px;
  766. height: 260px;
  767. filter: grayscale(0);
  768. filter: grayscale(0);
  769. }
  770.  
  771. .popup-inner-five img {
  772. width: 200px;
  773. height: 260px;
  774. filter: grayscale(0);
  775. filter: grayscale(0);
  776. }
  777.  
  778. .popup-inner-six img {
  779. width: 200px;
  780. height: 260px;
  781. filter: grayscale(0);
  782. filter: grayscale(0);
  783. }
  784.  
  785. .popup-inner-seven img {
  786. width: 200px;
  787. height: 260px;
  788. filter: grayscale(0);
  789. filter: grayscale(0);
  790. }
  791.  
  792. .con-desc {
  793. margin: 25px;
  794. overflow: hidden;
  795. }
  796.  
  797. .con-text {
  798. height: 100%;
  799. overflow-y: auto;
  800. margin-bottom: 25px;
  801. }
  802.  
  803. #nnspc {
  804. left: 45px;
  805. margin: 20px 0;
  806. transform: rotate(-90deg);
  807. transform-origin: bottom left;
  808. font-size: 19px;
  809. }
  810.  
  811. #nnspc a {
  812. text-decoration: none;
  813. }
  814.  
  815. /*HOVER*/
  816. .links a, aside img, .portrait-inner img {
  817. -webkit-transition: all 0.5s ease;
  818. -moz-transition: all 0.5s ease;
  819. -ms-transition: all 0.5s ease;
  820. transition: all 0.5s ease;
  821. }
  822.  
  823. .links a:hover {
  824. cursor: pointer;
  825. opacity: 1;
  826. }
  827.  
  828. aside li img:hover,
  829. .portrait-inner:hover > img,
  830. .active img, img.active,
  831. .connections img:hover {
  832. cursor: pointer;
  833. -webkit-filter: grayscale(0%);
  834. filter: grayscale(0%);
  835. }
  836.  
  837.  
  838.  
  839. /*media queries*/
  840. @media (max-width: 1036px) {
  841. .info-column {
  842. width: auto;
  843. height: auto;
  844. }
  845.  
  846. nav {
  847. position: fixed;
  848. top: 0;
  849. min-width: 100%;
  850. height: 50px;
  851. z-index: 99;
  852. }
  853.  
  854. aside {
  855. position: fixed;
  856. width: 100%;
  857. top: 50px;
  858. height: auto;
  859. z-index: 99;
  860. }
  861.  
  862. aside ul {
  863. display: flex;
  864. flex-direction: row;
  865. }
  866.  
  867. #wrapper {
  868. margin-top: 200px;
  869. height: auto;
  870. overflow-y: auto;
  871. flex-direction: column-reverse;
  872. }
  873.  
  874. #nnspc {
  875. z-index: 9999;
  876. position: fixed !important;
  877. }
  878. }
  879. </style>
  880.  
  881. <!--FALL BACK FOR NO JAVASCRIPT-->
  882. <noscript>
  883. <style type="text/css">
  884. #grid {
  885. display: flex;
  886. flex-flow: wrap;
  887. justify-content: space-between;
  888. width: 100%;
  889. }
  890.  
  891. #nojs {
  892. width: 100%;
  893. height: 35px;
  894. background: red;
  895. color: #fff;
  896. line-height: 100%;
  897. text-align: center;
  898. padding: 10px;
  899. }
  900. </style>
  901. </noscript>
  902. </head>
  903.  
  904. <body>
  905. <!--NO JS WARNING-->
  906. <noscript>
  907. <div id="nojs">Warning: Javascript is disabled. This will restrict functionality.</div>
  908. </noscript>
  909.  
  910. <div id='wrapper'>
  911. <nav>
  912. <ul>
  913. <li><a href="/" title="home"><i class="fas fa-home"></i></a></li>
  914. <li><a href="/ask" title="message"><i class="far fa-envelope"></i></a></li>
  915. <li><a href="https://pleasantprefects.tumblr.com" title="join pleasant prefects"><i class="fas fa-bolt"></i></a></li>
  916. </ul>
  917. </nav>
  918. <main>
  919.  
  920. <!--COPY PASTE THIS TAB FOR MORE TABS-->
  921.  
  922.  
  923. <!--CHARACTER1 -->
  924. <div class='tab'>
  925. <div class='portrait-row'>
  926. <div class='portrait-inner'>
  927.  
  928. <!--MAIN IMAGE-->
  929. <img class='big' src='https://pmcwwd.files.wordpress.com/2018/10/ks-jg-02.jpg?crop=0px%2C384px%2C1366px%2C912px&resize=640%2C415'>
  930.  
  931.  
  932.  
  933.  
  934. <!--TITLE-->
  935. <div class='title'>
  936. <h1>Annie<br />Montfort</h1>
  937. </div>
  938.  
  939. <!--LINKS-->
  940. <div class='links'>
  941. <a href='https://pleasantprefects.tumblr.com/' title="tag">
  942. <i class='fas fa-hashtag'></i>
  943. </a>
  944. <a href='/tagged/anniewriting' title="writing">
  945. <i class='fas fa-pen'></i>
  946. </a>
  947. <a href='https://www.pinterest.com/izzyhardin9/pp-annie/' title="pinterest">
  948. <i class='fab fa-pinterest'></i>
  949. </a>
  950.  
  951. </div>
  952.  
  953. <!--STATS-->
  954. <!--To change the height of the stat bars change the height of the div here, for each div in percentages 0-100-->
  955. <div class='stats'>
  956. <div class='bar'>
  957. <div style="height: 42%;">
  958. <span>int: 3</span>
  959. </div>
  960. </div>
  961. <div class='bar'>
  962. <div style="height: 14%;">
  963. <span>dex: 1</span>
  964. </div>
  965. </div>
  966. <div class='bar'>
  967. <div style="height: 70%;">
  968. <span>per: 5</span>
  969. </div>
  970. </div>
  971. <div class='bar'>
  972. <div style="height: 0%;">
  973. <span>str: 0</span>
  974. </div>
  975. </div>
  976. <div class='bar'>
  977. <div style="height: 56%;">
  978. <span>mag: 4</span>
  979. </div>
  980. </div>
  981. </div>
  982.  
  983. <!--CONNECTIONS-->
  984. <!--Important: The connection links need to be in the same order as their respective popup or they will be wrong!-->
  985. <div class='connections'>
  986.  
  987. <!--CONNECTION ONE-->
  988. <img src='https://m.media-amazon.com/images/M/MV5BYjAyMTJiOTQtMzU1Ny00MjRmLTg0YjMtOTQ0ZjEwZjM5MGU2XkEyXkFqcGdeQXVyNDQwNDcyNDc@._V1_SY1000_CR0,0,800,1000_AL_.jpg'>
  989. <!--CONNECTION TWO-->
  990. <img src='https://cdn.discordapp.com/attachments/524457265290412034/555618817066401823/unknown.png'>
  991. <!--CONNECTION THREE-->
  992. <img src='https://i.pinimg.com/564x/f4/fb/de/f4fbde2ecaf712c221cca7070614b782.jpg'>
  993. <!--CONNECTION Four-->
  994. <img src='https://i.pinimg.com/564x/24/fa/6e/24fa6ecada06d49fb20ac14badea10e4.jpg'>
  995.  
  996.  
  997.  
  998. <!--COPY MORE HERE-->
  999. </div>
  1000. </div>
  1001.  
  1002. <!--TEXT-->
  1003. <div class='text-row'>
  1004. <div class='text-title'>
  1005. <ul>
  1006. <li>ABOUT</li>
  1007. <li>Sixth Year</li>
  1008. <li>Ravenclaw</li>
  1009. <li>Prefect</li>
  1010. <li>Vindication</li>
  1011. </ul>
  1012. </div>
  1013. <div class='text-column'>
  1014. <div class='text'>
  1015. Insert Annie lore here!
  1016. </div>
  1017. </div>
  1018. </div>
  1019. </div>
  1020.  
  1021. <div class='info-column'>
  1022.  
  1023. <!--QUOTE-->
  1024. <div class='quote'>
  1025. <h3>Truth, like gold, is to be obtained not by its growth, but by washing away from it all that is not gold.<br>
  1026. -Leo Tolstoy</h3>
  1027. </div>
  1028.  
  1029. <!--INFO TABLE-->
  1030. <div class='table'>
  1031.  
  1032.  
  1033. <table>
  1034. <tr>
  1035. <td>Full Name</td>
  1036. <td>Anise Desdemona Montfort</td>
  1037. </tr>
  1038. <tr>
  1039. <td>Age</td>
  1040. <td>17</td>
  1041. </tr>
  1042. <tr>
  1043. <td>DoB</td>
  1044. <td>22 December</td>
  1045. </tr>
  1046. <tr>
  1047. <td>Zodiac</td>
  1048. <td>Capricorn</td>
  1049. </tr>
  1050. <tr>
  1051. <td>Gender</td>
  1052. <td>Female</td>
  1053. </tr>
  1054. <tr>
  1055. <td>Orientation</td>
  1056. <td>Lesbian</td>
  1057. </tr>
  1058. <tr>
  1059. <td>Relationship</td>
  1060. <td>Committed</td>
  1061. </tr>
  1062. <tr>
  1063. <td>Face Claim</td>
  1064. <td>Kiernan Shipka</td>
  1065. </tr>
  1066. <tr>
  1067. <td>Height</td>
  1068. <td>5'2"</td>
  1069. </tr>
  1070. <tr>
  1071. <td>Weight</td>
  1072. <td>115 lbs</td>
  1073. </tr>
  1074. <tr>
  1075. <td>Hair Color</td>
  1076. <td>Blonde</td>
  1077. </tr>
  1078. <tr>
  1079. <td>Eye Color</td>
  1080. <td>Brown</td>
  1081. </tr>
  1082. <tr>
  1083. <td>Wand</td>
  1084. <td>9.5 inches; applewood; veela hair</td>
  1085. </tr>
  1086. <tr>
  1087. <td>Boggart</td>
  1088. <td>Disappointing Superbia</td>
  1089. </tr>
  1090. <tr>
  1091. <td>Patronus</td>
  1092. <td>Dove</td>
  1093. </tr>
  1094. <tr>
  1095. <td>Amortentia</td>
  1096. <td>Daisies, fresh parchment, pomegranate, ivory soap</td>
  1097. </tr>
  1098. <tr>
  1099. <td>House</td>
  1100. <td>Ravenclaw</td>
  1101. </tr>
  1102. <tr>
  1103. <td>Best class</td>
  1104. <td>Transfiguration</td>
  1105. </tr>
  1106. <tr>
  1107. <td>Worst class</td>
  1108. <td>History of Magic</td>
  1109. </tr>
  1110. <tr>
  1111. <td>Electives</td>
  1112. <td>Divination, Muggle Studies</td>
  1113. </tr>
  1114. <tr>
  1115. <td>Alignment</td>
  1116. <td>Lawful Neutral</td>
  1117. </tr>
  1118. </tr>
  1119. <tr>
  1120. <td>MBTI</td>
  1121. <td>ENFJ</td>
  1122. </tr>
  1123.  
  1124. </table>
  1125. </div>
  1126. </div>
  1127.  
  1128. <!--CONNECTIONS-->
  1129.  
  1130. <!--CONNECTION POPUP ONE-->
  1131. <div class="popup">
  1132. <div class="popup-inner">
  1133. <!--IMAGE-->
  1134. <img src="https://i.pinimg.com/originals/18/66/aa/1866aac971398aac2aed325128d55d0d.png">
  1135. <div class="con-desc">
  1136.  
  1137. <div class='text-title'>
  1138. <ul>
  1139. <!--CONNECTION TITLE-->
  1140. <li>Brighid Calhoun</li>
  1141. </ul>
  1142. </div>
  1143. <!--CONNECTION TEXT-->
  1144. <div class="con-text">
  1145. gf!! one true love!!
  1146. </div>
  1147. </div>
  1148. </div>
  1149. </div>
  1150. <!--CONNECTION POPUP TWO-->
  1151. <div class="popup">
  1152. <div class="popup-inner">
  1153. <!--IMAGE-->
  1154. <img src="https://static.tvtropes.org/pmwiki/pub/images/isaac_hempstead_wright.jpg">
  1155. <div class="con-desc">
  1156.  
  1157. <div class='text-title'>
  1158. <ul>
  1159. <!--CONNECTION TITLE-->
  1160. <li>Hadrian Werley</li>
  1161. </ul>
  1162. </div>
  1163. <!--CONNECTION TEXT-->
  1164. <div class="con-text">
  1165. bff, worst boy
  1166. </div>
  1167. </div>
  1168. </div>
  1169. </div>
  1170.  
  1171. <!--CONNECTION POPUP THREE-->
  1172. <div class="popup">
  1173. <div class="popup-inner">
  1174. <!--IMAGE-->
  1175. <img src="https://i.pinimg.com/564x/63/e7/1d/63e71d029aa581a6ced35d1a86c76d27.jpg">
  1176. <div class="con-desc">
  1177.  
  1178. <div class='text-title'>
  1179. <ul>
  1180. <!--CONNECTION TITLE-->
  1181. <li>Fiona Crawford</li>
  1182. </ul>
  1183. </div>
  1184. <!--CONNECTION TEXT-->
  1185. <div class="con-text">
  1186. favorite child, mentee
  1187. </div>
  1188. </div>
  1189. </div>
  1190. </div>
  1191.  
  1192. <!--CONNECTION POPUP THREE-->
  1193. <div class="popup">
  1194. <div class="popup-inner">
  1195. <!--IMAGE-->
  1196. <img src="https://i.pinimg.com/564x/fc/00/50/fc00509480cd411bd202095bbf81a079.jpg">
  1197. <div class="con-desc">
  1198.  
  1199. <div class='text-title'>
  1200. <ul>
  1201. <!--CONNECTION TITLE-->
  1202. <li>keara parker</li>
  1203. </ul>
  1204. </div>
  1205. <!--CONNECTION TEXT-->
  1206. <div class="con-text">
  1207. roommate
  1208. </div>
  1209. </div>
  1210. </div>
  1211. </div>
  1212.  
  1213.  
  1214.  
  1215. </div>
  1216. <!--END COPY HERE-->
  1217.  
  1218. <!--COPY PASTE THIS TAB FOR MORE TABS-->
  1219.  
  1220.  
  1221. <!--CHARACTER 2 -->
  1222. <div class='tab'>
  1223. <div class='portrait-row'>
  1224. <div class='portrait-inner'>
  1225.  
  1226. <!--MAIN IMAGE-->
  1227. <img class='big' src='https://heightline.com/wp-content/uploads/Brendon-Urie-640x360.jpg'>
  1228.  
  1229.  
  1230.  
  1231.  
  1232. <!--TITLE-->
  1233. <div class='title'>
  1234. <h1>Roscoe Castellaine</h1>
  1235. </div>
  1236.  
  1237. <!--LINKS-->
  1238. <div class='links'>
  1239. <a href='https://pleasantprefects.tumblr.com/' title="tag">
  1240. <i class='fas fa-hashtag'></i>
  1241. </a>
  1242. <a href='/tagged/roscoewriting' title="writing">
  1243. <i class='fas fa-pen'></i>
  1244. </a>
  1245. <a href='https://www.pinterest.com/izzyhardin9/pp-roscoe/' title="pinterest">
  1246. <i class='fab fa-pinterest'></i>
  1247. </a>
  1248.  
  1249. </div>
  1250.  
  1251. <!--STATS-->
  1252. <!--To change the height of the stat bars change the height of the div here, for each div in percentages 0-100-->
  1253. <div class='stats'>
  1254. <div class='bar'>
  1255. <div style="height: 28%;">
  1256. <span>int: 2</span>
  1257. </div>
  1258. </div>
  1259. <div class='bar'>
  1260. <div style="height: 42%;">
  1261. <span>dex: 3</span>
  1262. </div>
  1263. </div>
  1264. <div class='bar'>
  1265. <div style="height: 42%;">
  1266. <span>per: 3</span>
  1267. </div>
  1268. </div>
  1269. <div class='bar'>
  1270. <div style="height: 56%;">
  1271. <span>str: 4</span>
  1272. </div>
  1273. </div>
  1274. <div class='bar'>
  1275. <div style="height: 28%;">
  1276. <span>mag: 2</span>
  1277. </div>
  1278. </div>
  1279. </div>
  1280.  
  1281. <!--CONNECTIONS-->
  1282. <!--Important: The connection links need to be in the same order as their respective popup or they will be wrong!-->
  1283. <div class='connections'>
  1284.  
  1285. <!--CONNECTION ONE-->
  1286. <img src='https://cdn.discordapp.com/attachments/524457265290412034/555826484187758592/unknown.png'>
  1287. <!--CONNECTION TWO-->
  1288. <img src='https://i.pinimg.com/564x/59/15/9c/59159cb8b5c06cebe9b0f4704b96e4d9.jpg'>
  1289. <!--CONNECTION THREE-->
  1290. <img src='https://i.pinimg.com/564x/c4/5f/1f/c45f1f0ac46d84053135619a044ab9d8.jpg'>
  1291. <!--CONNECTION FOUR-->
  1292. <img src='https://i.pinimg.com/564x/c3/05/0e/c3050e2a3308851c02e653112803dd0c.jpg'>
  1293.  
  1294.  
  1295.  
  1296.  
  1297. <!--COPY MORE HERE-->
  1298. </div>
  1299. </div>
  1300.  
  1301. <!--TEXT-->
  1302. <div class='text-row-two'>
  1303. <div class='text-title'>
  1304. <ul>
  1305. <li>ABOUT</li>
  1306. <li>Seventh Year</li>
  1307. <li>Gryffindor</li>
  1308. <li>Chaser, Co-Captain</li>
  1309. <li>Alliance</li>
  1310. </ul>
  1311. </div>
  1312. <div class='text-column'>
  1313. <div class='text'>
  1314. Insert Roscoe lore here!
  1315. </div>
  1316. </div>
  1317. </div>
  1318. </div>
  1319.  
  1320. <div class='info-column-two'>
  1321.  
  1322. <!--QUOTE-->
  1323. <div class='quote'>
  1324. <h3>It takes courage to grow up and become who you really are. <br>
  1325. -e.e. cummings</h3>
  1326. </div>
  1327.  
  1328. <!--INFO TABLE-->
  1329. <div class='table'>
  1330.  
  1331.  
  1332. <table>
  1333. <tr>
  1334. <td>Full Name</td>
  1335. <td>Roscoe Demitrius Castellaine</td>
  1336. </tr>
  1337. <tr>
  1338. <td>Age</td>
  1339. <td>17</td>
  1340. </tr>
  1341. <tr>
  1342. <td>DoB</td>
  1343. <td>18 February</td>
  1344. </tr>
  1345. <tr>
  1346. <td>Zodiac</td>
  1347. <td>Pisces</td>
  1348. </tr>
  1349. <tr>
  1350. <td>Gender</td>
  1351. <td>Male</td>
  1352. </tr>
  1353. <tr>
  1354. <td>Orientation</td>
  1355. <td>Pansexual</td>
  1356. </tr>
  1357. <tr>
  1358. <td>Relationship</td>
  1359. <td>Committed</td>
  1360. </tr>
  1361. <tr>
  1362. <td>Face Claim</td>
  1363. <td>Brendon Urie</td>
  1364. </tr>
  1365. <tr>
  1366. <td>Height</td>
  1367. <td>6'0</td>
  1368. </tr>
  1369. <tr>
  1370. <td>Weight</td>
  1371. <td>153</td>
  1372. </tr>
  1373. <tr>
  1374. <td>Hair Color</td>
  1375. <td>Brown</td>
  1376. </tr>
  1377. <tr>
  1378. <td>Eye Color</td>
  1379. <td>Brown</td>
  1380. </tr>
  1381. <tr>
  1382. <td>Wand</td>
  1383. <td>11.5 inches; aspen; dragon heartstring</td>
  1384. </tr>
  1385. <tr>
  1386. <td>Boggart</td>
  1387. <td>Death Eaters</td>
  1388. </tr>
  1389. <tr>
  1390. <td>Patronus</td>
  1391. <td>Jack Russell Terrier</td>
  1392. </tr>
  1393. <tr>
  1394. <td>Amortentia</td>
  1395. <td>???</td>
  1396. </tr>
  1397. <tr>
  1398. <td>House</td>
  1399. <td>Gryffindor</td>
  1400. </tr>
  1401. <tr>
  1402. <td>Best class</td>
  1403. <td>Herbology</td>
  1404. </tr>
  1405. <tr>
  1406. <td>Worst class</td>
  1407. <td>Potions</td>
  1408. </tr>
  1409. <tr>
  1410. <td>Electives</td>
  1411. <td>Arithmancy</td>
  1412. </tr>
  1413. <tr>
  1414. <td>Alignment</td>
  1415. <td>Chaotic Good</td>
  1416. </tr>
  1417. </tr>
  1418. <tr>
  1419. <td>MBTI</td>
  1420. <td>ESTP</td>
  1421. </tr>
  1422.  
  1423. </table>
  1424. </div>
  1425. </div>
  1426.  
  1427. <!--CONNECTIONS-->
  1428.  
  1429. <!--CONNECTION POPUP ONE-->
  1430. <div class="popup">
  1431. <div class="popup-inner-two">
  1432. <!--IMAGE-->
  1433. <img src="https://cdn.discordapp.com/attachments/524457265290412034/555826668720095264/unknown.png">
  1434. <div class="con-desc">
  1435.  
  1436. <div class='text-title'>
  1437. <ul>
  1438. <!--CONNECTION TITLE-->
  1439. <li>Arden Galloway</li>
  1440. </ul>
  1441. </div>
  1442. <!--CONNECTION TEXT-->
  1443. <div class="con-text">
  1444. FAVORITE PERSON!! boyfriend, love of his life.
  1445. </div>
  1446. </div>
  1447. </div>
  1448. </div>
  1449. <!--CONNECTION POPUP TWO-->
  1450. <div class="popup">
  1451. <div class="popup-inner-two">
  1452. <!--IMAGE-->
  1453. <img src="https://i-h2.pinimg.com/236x/02/f2/5b/02f25b99a097d729e276777978bd96d7.jpg">
  1454. <div class="con-desc">
  1455.  
  1456. <div class='text-title'>
  1457. <ul>
  1458. <!--CONNECTION TITLE-->
  1459. <li>Gemma Watts-Barrows</li>
  1460. </ul>
  1461. </div>
  1462. <!--CONNECTION TEXT-->
  1463. <div class="con-text">
  1464. BFF, co-captain
  1465. </div>
  1466. </div>
  1467. </div>
  1468. </div>
  1469.  
  1470. <!--CONNECTION POPUP THREE-->
  1471. <div class="popup">
  1472. <div class="popup-inner-two">
  1473. <!--IMAGE-->
  1474. <img src="https://i.pinimg.com/564x/86/51/23/8651231cbc16cc5f7f21886e54d269b2.jpg?b=t">
  1475. <div class="con-desc">
  1476.  
  1477. <div class='text-title'>
  1478. <ul>
  1479. <!--CONNECTION TITLE-->
  1480. <li>Penny Thomas</li>
  1481. </ul>
  1482. </div>
  1483. <!--CONNECTION TEXT-->
  1484. <div class="con-text">
  1485. frands
  1486. </div>
  1487. </div>
  1488. </div>
  1489. </div>
  1490.  
  1491. <!--CONNECTION POPUP four-->
  1492. <div class="popup">
  1493. <div class="popup-inner-two">
  1494. <!--IMAGE-->
  1495. <img src="https://i.pinimg.com/564x/1b/c3/74/1bc374468a9fbfecef18087a9f9898ff.jpg">
  1496. <div class="con-desc">
  1497.  
  1498. <div class='text-title'>
  1499. <ul>
  1500. <!--CONNECTION TITLE-->
  1501. <li>Annie Montfort</li>
  1502. </ul>
  1503. </div>
  1504. <!--CONNECTION TEXT-->
  1505. <div class="con-text">
  1506. cuz
  1507. </div>
  1508. </div>
  1509. </div>
  1510. </div>
  1511.  
  1512. <!--CONNECTION POPUP five-->
  1513. </div>
  1514. <!--END COPY HERE-->
  1515.  
  1516.  
  1517.  
  1518.  
  1519.  
  1520.  
  1521. <!--CHARACTER 3 -->
  1522. <div class='tab'>
  1523. <div class='portrait-row'>
  1524. <div class='portrait-inner'>
  1525.  
  1526. <!--MAIN IMAGE-->
  1527. <img class='big' src='https://i.pinimg.com/564x/11/55/06/115506fc5e2cde9df932a94de31d3f1c.jpg'>
  1528.  
  1529.  
  1530.  
  1531.  
  1532. <!--TITLE-->
  1533. <div class='title'>
  1534. <h1>Maeve <br /> Pierson</h1>
  1535. </div>
  1536.  
  1537. <!--LINKS-->
  1538. <div class='links'>
  1539. <a href='https://pleasantprefects.tumblr.com/' title="tag">
  1540. <i class='fas fa-hashtag'></i>
  1541. </a>
  1542. <a href='/tagged/maevewriting' title="writing">
  1543. <i class='fas fa-pen'></i>
  1544. </a>
  1545. <a href='https://www.pinterest.com/izzyhardin9/pp-maeve/' title="pinterest">
  1546. <i class='fab fa-pinterest'></i>
  1547. </a>
  1548.  
  1549. </div>
  1550.  
  1551. <!--STATS-->
  1552. <!--To change the height of the stat bars change the height of the div here, for each div in percentages 0-100-->
  1553. <div class='stats'>
  1554. <div class='bar'>
  1555. <div style="height: 28%;">
  1556. <span>int: 2</span>
  1557. </div>
  1558. </div>
  1559. <div class='bar'>
  1560. <div style="height: 14%;">
  1561. <span>dex: 1</span>
  1562. </div>
  1563. </div>
  1564. <div class='bar'>
  1565. <div style="height: 14%;">
  1566. <span>per: 1</span>
  1567. </div>
  1568. </div>
  1569. <div class='bar'>
  1570. <div style="height: 28%;">
  1571. <span>str: 2</span>
  1572. </div>
  1573. </div>
  1574. <div class='bar'>
  1575. <div style="height: 14%;">
  1576. <span>mag: 1</span>
  1577. </div>
  1578. </div>
  1579. </div>
  1580.  
  1581. <!--CONNECTIONS-->
  1582. <!--Important: The connection links need to be in the same order as their respective popup or they will be wrong!-->
  1583. <div class='connections'>
  1584.  
  1585. <!--CONNECTION ONE-->
  1586. <img src='https://i.pinimg.com/564x/60/e3/a4/60e3a4d29a01345d6edb0ad17dfb4766.jpg'>
  1587. <!--CONNECTION TWO-->
  1588. <img src='https://i-h2.pinimg.com/564x/63/e7/1d/63e71d029aa581a6ced35d1a86c76d27.jpg'>
  1589. <!--CONNECTION THREE-->
  1590. <img src='https://i.pinimg.com/564x/09/4c/44/094c4412b0e18f38e2868cf4d456f7e5.jpg'>
  1591. <!--CONNECTION FOUR-->
  1592. <img src='https://i.pinimg.com/564x/75/ce/0d/75ce0d8bcf713cde7b2455cea958d6b9.jpg'>
  1593.  
  1594.  
  1595.  
  1596.  
  1597. <!--COPY MORE HERE-->
  1598. </div>
  1599. </div>
  1600.  
  1601. <!--TEXT-->
  1602. <div class='text-row-three'>
  1603. <div class='text-title'>
  1604. <ul>
  1605. <li>ABOUT</li>
  1606. <li>First Year</li>
  1607. <li>Hufflepuff</li>
  1608. <li>Hogwarts</li>
  1609. </ul>
  1610. </div>
  1611. <div class='text-column'>
  1612. <div class='text'>
  1613. Insert Maeve lore here!
  1614. </div>
  1615. </div>
  1616. </div>
  1617. </div>
  1618.  
  1619. <div class='info-column-three'>
  1620.  
  1621. <!--QUOTE-->
  1622. <div class='quote'>
  1623. <h3>The stars don't look bigger, but they do look brighter. <br>
  1624. -Sally Ride</h3>
  1625. </div>
  1626.  
  1627. <!--INFO TABLE-->
  1628. <div class='table'>
  1629.  
  1630.  
  1631. <table>
  1632. <tr>
  1633. <td>Full Name</td>
  1634. <td>Maeve Katherine Pierson</td>
  1635. </tr>
  1636. <tr>
  1637. <td>Age</td>
  1638. <td>11</td>
  1639. </tr>
  1640. <tr>
  1641. <td>DoB</td>
  1642. <td>30 May</td>
  1643. </tr>
  1644. <tr>
  1645. <td>Zodiac</td>
  1646. <td>Gemini</td>
  1647. </tr>
  1648. <tr>
  1649. <td>Gender</td>
  1650. <td>Female</td>
  1651. </tr>
  1652. <tr>
  1653. <td>Orientation</td>
  1654. <td>???</td>
  1655. </tr>
  1656. <tr>
  1657. <td>Relationship</td>
  1658. <td>???</td>
  1659. </tr>
  1660. <tr>
  1661. <td>Face Claim</td>
  1662. <td>Alexis Bledel</td>
  1663. </tr>
  1664. <tr>
  1665. <td>Height</td>
  1666. <td>4'6"</td>
  1667. </tr>
  1668. <tr>
  1669. <td>Weight</td>
  1670. <td>65</td>
  1671. </tr>
  1672. <tr>
  1673. <td>Hair Color</td>
  1674. <td>Brown</td>
  1675. </tr>
  1676. <tr>
  1677. <td>Eye Color</td>
  1678. <td>Brown</td>
  1679. </tr>
  1680. <tr>
  1681. <td>Wand</td>
  1682. <td>10.25 inches; red oak; unicorn hair</td>
  1683. </tr>
  1684. <tr>
  1685. <td>Boggart</td>
  1686. <td>Eleanor Selwyn deciding not to be her friend anymore</td>
  1687. </tr>
  1688. <tr>
  1689. <td>Patronus</td>
  1690. <td>Hedgehog</td>
  1691. </tr>
  1692. <tr>
  1693. <td>Amortentia</td>
  1694. <td>???</td>
  1695. </tr>
  1696. <tr>
  1697. <td>House</td>
  1698. <td>Hufflepuff</td>
  1699. </tr>
  1700. <tr>
  1701. <td>Best class</td>
  1702. <td>Astronomy</td>
  1703. </tr>
  1704. <tr>
  1705. <td>Worst class</td>
  1706. <td>Charms</td>
  1707. </tr>
  1708. <tr>
  1709. <td>Electives</td>
  1710. <td>N/A</td>
  1711. </tr>
  1712. <tr>
  1713. <td>Alignment</td>
  1714. <td>Neutral Good</td>
  1715. </tr>
  1716. </tr>
  1717. <tr>
  1718. <td>MBTI</td>
  1719. <td>ISFJ</td>
  1720. </tr>
  1721.  
  1722. </table>
  1723. </div>
  1724. </div>
  1725.  
  1726. <!--CONNECTIONS-->
  1727.  
  1728. <!--CONNECTION POPUP ONE-->
  1729. <div class="popup">
  1730. <div class="popup-inner-three">
  1731. <!--IMAGE-->
  1732. <img src="https://i.pinimg.com/564x/a2/67/bb/a267bbbdb0fe4f5ab1be21d4f6562634.jpg">
  1733. <div class="con-desc">
  1734.  
  1735. <div class='text-title'>
  1736. <ul>
  1737. <!--CONNECTION TITLE-->
  1738. <li>Eleanor Selwyn</li>
  1739. </ul>
  1740. </div>
  1741. <!--CONNECTION TEXT-->
  1742. <div class="con-text">
  1743. roomie, bff
  1744. </div>
  1745. </div>
  1746. </div>
  1747. </div>
  1748. <!--CONNECTION POPUP TWO-->
  1749. <div class="popup">
  1750. <div class="popup-inner-three">
  1751. <!--IMAGE-->
  1752. <img src="https://i.pinimg.com/564x/ca/d2/87/cad28768d75b6b030f6f21e0f41c4a18.jpg">
  1753. <div class="con-desc">
  1754.  
  1755. <div class='text-title'>
  1756. <ul>
  1757. <!--CONNECTION TITLE-->
  1758. <li>Fiona Crawford</li>
  1759. </ul>
  1760. </div>
  1761. <!--CONNECTION TEXT-->
  1762. <div class="con-text">
  1763. frenemy
  1764. </div>
  1765. </div>
  1766. </div>
  1767. </div>
  1768.  
  1769. <!--CONNECTION POPUP THREE-->
  1770. <div class="popup">
  1771. <div class="popup-inner-three">
  1772. <!--IMAGE-->
  1773. <img src="https://i.pinimg.com/564x/4a/33/f7/4a33f73336e591ee308317d85bc23517.jpg">
  1774. <div class="con-desc">
  1775.  
  1776. <div class='text-title'>
  1777. <ul>
  1778. <!--CONNECTION TITLE-->
  1779. <li>Rosalind O'Neill</li>
  1780. </ul>
  1781. </div>
  1782. <!--CONNECTION TEXT-->
  1783. <div class="con-text">
  1784. bff
  1785. </div>
  1786. </div>
  1787. </div>
  1788. </div>
  1789.  
  1790. <!--CONNECTION POPUP four-->
  1791. <div class="popup">
  1792. <div class="popup-inner-three">
  1793. <!--IMAGE-->
  1794. <img src="https://i.pinimg.com/564x/5b/dc/ec/5bdcec723cf26bfa48c50b2f7398bac2.jpg">
  1795. <div class="con-desc">
  1796.  
  1797. <div class='text-title'>
  1798. <ul>
  1799. <!--CONNECTION TITLE-->
  1800. <li>Louisa Pennington</li>
  1801. </ul>
  1802. </div>
  1803. <!--CONNECTION TEXT-->
  1804. <div class="con-text">
  1805. bff
  1806. </div>
  1807. </div>
  1808. </div>
  1809. </div>
  1810.  
  1811. <!--END COPY HERE-->
  1812. </div>
  1813.  
  1814. <!--CHARACTER 4 -->
  1815. <div class='tab'>
  1816. <div class='portrait-row'>
  1817. <div class='portrait-inner'>
  1818.  
  1819. <!--MAIN IMAGE-->
  1820. <img class='big' src='https://images.indianexpress.com/2018/12/kit-harington-759.jpg'>
  1821.  
  1822.  
  1823. <!--TITLE-->
  1824. <div class='title'>
  1825. <h1>Milo <br /> Ainsley</h1>
  1826. </div>
  1827.  
  1828. <!--LINKS-->
  1829. <div class='links'>
  1830. <a href='https://pleasantprefects.tumblr.com/' title="tag">
  1831. <i class='fas fa-hashtag'></i>
  1832. </a>
  1833. <a href='/tagged/milowriting' title="writing">
  1834. <i class='fas fa-pen'></i>
  1835. </a>
  1836. <a href='https://www.pinterest.com/izzyhardin9/pp-milo/' title="pinterest">
  1837. <i class='fab fa-pinterest'></i>
  1838. </a>
  1839.  
  1840. </div>
  1841.  
  1842. <!--STATS-->
  1843. <!--To change the height of the stat bars change the height of the div here, for each div in percentages 0-100-->
  1844. <div class='stats'>
  1845. <div class='bar'>
  1846. <div style="height: 70%;">
  1847. <span>int: 5</span>
  1848. </div>
  1849. </div>
  1850. <div class='bar'>
  1851. <div style="height: 28%;">
  1852. <span>dex: 2</span>
  1853. </div>
  1854. </div>
  1855. <div class='bar'>
  1856. <div style="height: 42%;">
  1857. <span>per: 3</span>
  1858. </div>
  1859. </div>
  1860. <div class='bar'>
  1861. <div style="height: 28%;">
  1862. <span>str: 2</span>
  1863. </div>
  1864. </div>
  1865. <div class='bar'>
  1866. <div style="height: 70%;">
  1867. <span>mag: 5</span>
  1868. </div>
  1869. </div>
  1870. </div>
  1871.  
  1872. <!--CONNECTIONS-->
  1873. <!--Important: The connection links need to be in the same order as their respective popup or they will be wrong!-->
  1874. <div class='connections'>
  1875.  
  1876. <!--CONNECTION ONE-->
  1877. <img src='https://i.pinimg.com/564x/a3/c5/4c/a3c54cd46aeffa301cb28e1af6b6d0af.jpg'>
  1878. <!--CONNECTION TWO-->
  1879. <img src='https://i.pinimg.com/564x/c4/b8/3b/c4b83b1f2d6349999250d871df19018f.jpg'>
  1880. <!--CONNECTION THREE-->
  1881. <img src='https://i.pinimg.com/564x/4a/80/cf/4a80cf2142481b794c48308bf3fd3490.jpg'>
  1882. <!--CONNECTION FOUR-->
  1883. <img src='https://i.pinimg.com/564x/49/d2/d9/49d2d9f59168be6767791c47e1d4056e.jpg'>
  1884.  
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890. <!--COPY MORE HERE-->
  1891. </div>
  1892.  
  1893.  
  1894. <!--TEXT-->
  1895. <div class='text-row-four'>
  1896. <div class='text-title'>
  1897. <ul>
  1898. <li>ABOUT</li>
  1899. <li>Muggle Studies Professor</li>
  1900. <li>Ravenclaw</li>
  1901. <li>Ghost</li>
  1902. <li>Hogwarts</li>
  1903. </ul>
  1904. </div>
  1905. <div class='text-column'>
  1906. <div class='text'>
  1907. Insert Milo lore here!
  1908. </div>
  1909. </div>
  1910. </div>
  1911. </div>
  1912.  
  1913. <div class='info-column-four'>
  1914.  
  1915. <!--QUOTE-->
  1916. <div class='quote'>
  1917. <h3>Deep into that darkness peering, long I stood there, wondering, fearing, doubting, dreaming dreams no mortal ever dared to dream before.
  1918. <br>
  1919. -Edgar Allan Poe</h3>
  1920. </div>
  1921.  
  1922. <!--INFO TABLE-->
  1923. <div class='table'>
  1924.  
  1925.  
  1926. <table>
  1927. <tr>
  1928. <td>Full Name</td>
  1929. <td>Milo Tobias Ainsley</td>
  1930. </tr>
  1931. <tr>
  1932. <td>Age at Death</td>
  1933. <td>24</td>
  1934. </tr>
  1935. <tr>
  1936. <td>DoB</td>
  1937. <td>10 Feb</td>
  1938. </tr>
  1939. <tr>
  1940. <td>Zodiac</td>
  1941. <td>Aquarius</td>
  1942. </tr>
  1943. <tr>
  1944. <td>Gender</td>
  1945. <td>Male</td>
  1946. </tr>
  1947. <tr>
  1948. <td>Orientation</td>
  1949. <td>Gay</td>
  1950. </tr>
  1951. <tr>
  1952. <td>Relationship</td>
  1953. <td>Crushing</td>
  1954. </tr>
  1955. <tr>
  1956. <td>Face Claim</td>
  1957. <td>Kit Harington</td>
  1958. </tr>
  1959. <tr>
  1960. <td>Height</td>
  1961. <td>5'8"</td>
  1962. </tr>
  1963. <tr>
  1964. <td>Weight</td>
  1965. <td>idk he's a ghost</td>
  1966. </tr>
  1967. <tr>
  1968. <td>Hair Color</td>
  1969. <td>Brown</td>
  1970. </tr>
  1971. <tr>
  1972. <td>Eye Color</td>
  1973. <td>Blue</td>
  1974. </tr>
  1975. <tr>
  1976. <td>Wand</td>
  1977. <td>10.25 inches; hazel; phoenix feather</td>
  1978. </tr>
  1979. <tr>
  1980. <td>Boggart</td>
  1981. <td>His books being set on fire</td>
  1982. </tr>
  1983. <tr>
  1984. <td>Patronus</td>
  1985. <td>Orca</td>
  1986. </tr>
  1987. <tr>
  1988. <td>Amortentia</td>
  1989. <td>old books, strawberry lollipops</td>
  1990. </tr>
  1991. <tr>
  1992. <td>House</td>
  1993. <td>Ravenclaw</td>
  1994. </tr>
  1995. <tr>
  1996. <td>Favorite Branch of Magic</td>
  1997. <td>Charms</td>
  1998. </tr>
  1999. <tr>
  2000. <td>Least Favorite Branch of Magic</td>
  2001. <td>Herbology</td>
  2002. </tr>
  2003. <tr>
  2004. <td>Alignment</td>
  2005. <td>Lawful Neutral</td>
  2006. </tr>
  2007. </tr>
  2008. <tr>
  2009. <td>MBTI</td>
  2010. <td>ENTP</td>
  2011. </tr>
  2012.  
  2013. </table>
  2014. </div>
  2015. </div>
  2016.  
  2017. <!--CONNECTIONS-->
  2018.  
  2019. <!--CONNECTION POPUP ONE-->
  2020. <div class="popup">
  2021. <div class="popup-inner-four">
  2022. <!--IMAGE-->
  2023. <img src="https://i.pinimg.com/564x/d5/a1/f4/d5a1f4202c4957a314f581f27a076c01.jpg">
  2024. <div class="con-desc">
  2025.  
  2026. <div class='text-title'>
  2027. <ul>
  2028. <!--CONNECTION TITLE-->
  2029. <li>Atticus Kennedy</li>
  2030. </ul
  2031. </div>
  2032. <!--CONNECTION TEXT-->
  2033. <div class="con-text">
  2034. husband until milo died, rip
  2035. </div>
  2036. </div>
  2037. </div>
  2038. </div>
  2039. <!--CONNECTION POPUP TWO-->
  2040. <div class="popup">
  2041. <div class="popup-inner-four">
  2042. <!--IMAGE-->
  2043. <img src="https://i.pinimg.com/564x/e4/00/94/e40094a82d1869a7734d8fe3e8310605.jpg">
  2044. <div class="con-desc">
  2045.  
  2046. <div class='text-title'>
  2047. <ul>
  2048. <!--CONNECTION TITLE-->
  2049. <li>Charlotte Ainsley-Kennedy</li>
  2050. </ul>
  2051. </div>
  2052. <!--CONNECTION TEXT-->
  2053. <div class="con-text">
  2054. daughter who doesn't know him
  2055. </div>
  2056. </div>
  2057. </div>
  2058. </div>
  2059.  
  2060. <!--CONNECTION POPUP THREE-->
  2061. <div class="popup">
  2062. <div class="popup-inner-four">
  2063. <!--IMAGE-->
  2064. <img src="https://i.pinimg.com/564x/e2/6c/f1/e26cf1f124b55e93a1ac97649d056291.jpg">
  2065. <div class="con-desc">
  2066.  
  2067. <div class='text-title'>
  2068. <ul>
  2069. <!--CONNECTION TITLE-->
  2070. <li>Tabitha Faye</li>
  2071. </ul>
  2072. </div>
  2073. <!--CONNECTION TEXT-->
  2074. <div class="con-text">
  2075. BFF
  2076. </div>
  2077. </div>
  2078. </div>
  2079. </div>
  2080.  
  2081. <!--CONNECTION POPUP four-->
  2082. <div class="popup">
  2083. <div class="popup-inner-four">
  2084. <!--IMAGE-->
  2085. <img src="https://i.pinimg.com/564x/f3/07/40/f307408b6102c79b1bb7b83ae6ba9557.jpg">
  2086. <div class="con-desc">
  2087.  
  2088. <div class='text-title'>
  2089. <ul>
  2090. <!--CONNECTION TITLE-->
  2091. <li>Owen Cavanagh</li>
  2092. </ul>
  2093. </div>
  2094. <!--CONNECTION TEXT-->
  2095. <div class="con-text">
  2096. office buddy
  2097. </div>
  2098. </div>
  2099. </div>
  2100. </div>
  2101. <!--END COPY HERE-->
  2102. </div>
  2103.  
  2104.  
  2105. <!--CHARACTER 5 -->
  2106. <div class='tab'>
  2107. <div class='portrait-row'>
  2108. <div class='portrait-inner'>
  2109.  
  2110. <!--MAIN IMAGE-->
  2111. <img class='big' src='https://images.perthnow.com.au/publication/1CA5DC13FB086ED44CDFCAA39FDBBA1D/bef873b7d01127a5f5baec4a40673980.jpeg'>
  2112.  
  2113.  
  2114.  
  2115.  
  2116. <!--TITLE-->
  2117. <div class='title'>
  2118. <h1>Julia<br />Castellaine</h1>
  2119. </div>
  2120.  
  2121. <!--LINKS-->
  2122. <div class='links'>
  2123. <a href='https://pleasantprefects.tumblr.com/' title="tag">
  2124. <i class='fas fa-hashtag'></i>
  2125. </a>
  2126. <a href='/tagged/juliawriting' title="writing">
  2127. <i class='fas fa-pen'></i>
  2128. </a>
  2129. <a href='https://www.pinterest.com/izzyhardin9/pp=julia/' title="pinterest">
  2130. <i class='fab fa-pinterest'></i>
  2131. </a>
  2132.  
  2133. </div>
  2134.  
  2135. <!--STATS-->
  2136. <!--To change the height of the stat bars change the height of the div here, for each div in percentages 0-100-->
  2137. <div class='stats'>
  2138. <div class='bar'>
  2139. <div style="height: 42%;">
  2140. <span>int: 3</span>
  2141. </div>
  2142. </div>
  2143. <div class='bar'>
  2144. <div style="height: 42%;">
  2145. <span>dex: 3</span>
  2146. </div>
  2147. </div>
  2148. <div class='bar'>
  2149. <div style="height: 56%;">
  2150. <span>per: 4</span>
  2151. </div>
  2152. </div>
  2153. <div class='bar'>
  2154. <div style="height: 28%;">
  2155. <span>str: 2</span>
  2156. </div>
  2157. </div>
  2158. <div class='bar'>
  2159. <div style="height: 42%;">
  2160. <span>mag: 3</span>
  2161. </div>
  2162. </div>
  2163. </div>
  2164.  
  2165. <!--CONNECTIONS-->
  2166. <!--Important: The connection links need to be in the same order as their respective popup or they will be wrong!-->
  2167. <div class='connections'>
  2168.  
  2169. <!--CONNECTION ONE-->
  2170. <img src='https://i.pinimg.com/564x/a5/d7/76/a5d776aa4cdcf0b04bf8006d7a08521d.jpg'>
  2171. <!--CONNECTION TWO-->
  2172. <img src='https://i.pinimg.com/564x/0e/3a/d8/0e3ad87981219cd81f0425f9678f1812.jpg'>
  2173. <!--CONNECTION THREE-->
  2174. <img src='https://i.pinimg.com/564x/61/79/ab/6179abe768c70dfb67cc569168e07610.jpg?b=t'>
  2175. <!--CONNECTION Four-->
  2176. <img src='https://i.pinimg.com/564x/fe/4c/36/fe4c362a07826fc949fe064affd902d8.jpg?b=t'>
  2177.  
  2178.  
  2179.  
  2180. <!--COPY MORE HERE-->
  2181. </div>
  2182. </div>
  2183.  
  2184. <!--TEXT-->
  2185. <div class='text-row-five'>
  2186. <div class='text-title'>
  2187. <ul>
  2188. <li>ABOUT</li>
  2189. <li>Barkeep, Excelsior Hall</li>
  2190. <li>Slytherin</li>
  2191. <li>Vindication</li>
  2192. </ul>
  2193. </div>
  2194. <div class='text-column'>
  2195. <div class='text'>
  2196. Insert Julia lore here!
  2197. </div>
  2198. </div>
  2199. </div>
  2200. </div>
  2201.  
  2202. <div class='info-column-five'>
  2203.  
  2204. <!--QUOTE-->
  2205. <div class='quote'>
  2206. <h3>I am not altogether on anybody's side, because nobody is altogether on my side. <br>
  2207. -J.R.R Tolkien</h3>
  2208. </div>
  2209.  
  2210. <!--INFO TABLE-->
  2211. <div class='table'>
  2212.  
  2213.  
  2214. <table>
  2215. <tr>
  2216. <td>Full Name</td>
  2217. <td>Julia Castellaine
  2218.  
  2219. </td>
  2220. </tr>
  2221. <tr>
  2222. <td>Age</td>
  2223. <td>25</td>
  2224. </tr>
  2225. <tr>
  2226. <td>DoB</td>
  2227. <td>17 April</td>
  2228. </tr>
  2229. <tr>
  2230. <td>Zodiac</td>
  2231. <td>Aries</td>
  2232. </tr>
  2233. <tr>
  2234. <td>Gender</td>
  2235. <td>Female</td>
  2236. </tr>
  2237. <tr>
  2238. <td>Orientation</td>
  2239. <td>Lesbian</td>
  2240. </tr>
  2241. <tr>
  2242. <td>Relationship</td>
  2243. <td>Single</td>
  2244. </tr>
  2245. <tr>
  2246. <td>Face Claim</td>
  2247. <td>Courtney Eaton</td>
  2248. </tr>
  2249. <tr>
  2250. <td>Height</td>
  2251. <td>5'10"</td>
  2252. </tr>
  2253. <tr>
  2254. <td>Weight</td>
  2255. <td>135 lbs</td>
  2256. </tr>
  2257. <tr>
  2258. <td>Hair Color</td>
  2259. <td>Brown</td>
  2260. </tr>
  2261. <tr>
  2262. <td>Eye Color</td>
  2263. <td>Brown</td>
  2264. </tr>
  2265. <tr>
  2266. <td>Wand</td>
  2267. <td>10.25 inches; dogwood; unicorn hair</td>
  2268. </tr>
  2269. <tr>
  2270. <td>Boggart</td>
  2271. <td>???</td>
  2272. </tr>
  2273. <tr>
  2274. <td>Patronus</td>
  2275. <td>Dragonfly</td>
  2276. </tr>
  2277. <tr>
  2278. <td>Amortentia</td>
  2279. <td>earl grey tea, wood shavings, dark chocolate</td>
  2280. </tr>
  2281. <tr>
  2282. <td>House</td>
  2283. <td>Slytherin</td>
  2284. </tr>
  2285. <tr>
  2286. <td>Favorite Branch of Magic</td>
  2287. <td>Herbology</td>
  2288. </tr>
  2289. <tr>
  2290. <td>Least Favorite Branch of Magic</td>
  2291. <td>Divination</td>
  2292. </tr>
  2293. <tr>
  2294. <td>Alignment</td>
  2295. <td>True Neutral</td>
  2296. </tr>
  2297. </tr>
  2298. <tr>
  2299. <td>MBTI</td>
  2300. <td>ESFP</td>
  2301. </tr>
  2302.  
  2303. </table>
  2304. </div>
  2305. </div>
  2306.  
  2307. <!--CONNECTIONS-->
  2308.  
  2309. <!--CONNECTION POPUP ONE-->
  2310. <!--CONNECTION POPUP THREE-->
  2311. <div class="popup">
  2312. <div class="popup-inner-five">
  2313. <!--IMAGE-->
  2314. <img src="https://i.pinimg.com/564x/47/7e/d5/477ed5add3095a68d761f94b3d794587.jpg">
  2315. <div class="con-desc">
  2316.  
  2317. <div class='text-title'>
  2318. <ul>
  2319. <!--CONNECTION TITLE-->
  2320. <li>Kathleen Kennedy</li>
  2321. </ul>
  2322. </div>
  2323. <!--CONNECTION TEXT-->
  2324. <div class="con-text">
  2325. bff
  2326. </div>
  2327. </div>
  2328. </div>
  2329. </div>
  2330.  
  2331. <!--CONNECTION POPUP TWO-->
  2332. <div class="popup">
  2333. <div class="popup-inner-five">
  2334. <!--IMAGE-->
  2335. <img src="https://i-h2.pinimg.com/236x/08/64/86/086486d777856a3032450d30eae1cd95.jpg">
  2336. <div class="con-desc">
  2337.  
  2338. <div class='text-title'>
  2339. <ul>
  2340. <!--CONNECTION TITLE-->
  2341. <li>Livinia Dermot</li>
  2342. </ul>
  2343. </div>
  2344. <!--CONNECTION TEXT-->
  2345. <div class="con-text">
  2346. kiss buddy and friend, sort of boss
  2347. </div>
  2348. </div>
  2349. </div>
  2350. </div>
  2351.  
  2352. <!--CONNECTION POPUP THREE-->
  2353. <div class="popup">
  2354. <div class="popup-inner-five">
  2355. <!--IMAGE-->
  2356. <img src="https://i-h2.pinimg.com/236x/19/3c/c8/193cc8cfdb8ce672c213ff04a8e71d97.jpg">
  2357. <div class="con-desc">
  2358.  
  2359. <div class='text-title'>
  2360. <ul>
  2361. <!--CONNECTION TITLE-->
  2362. <li>Jacob Fawley</li>
  2363. </ul>
  2364. </div>
  2365. <!--CONNECTION TEXT-->
  2366. <div class="con-text">
  2367. roommate that she totally doesn't hate
  2368. </div>
  2369. </div>
  2370. </div>
  2371. </div>
  2372.  
  2373. <!--CONNECTION POPUP THREE-->
  2374. <div class="popup">
  2375. <div class="popup-inner-five">
  2376. <!--IMAGE-->
  2377. <img src="https://i.pinimg.com/564x/75/b7/cc/75b7ccdac9870e59a347fc6f90282ffe.jpg">
  2378. <div class="con-desc">
  2379.  
  2380. <div class='text-title'>
  2381. <ul>
  2382. <!--CONNECTION TITLE-->
  2383. <li>Vanessa Ayres</li>
  2384. </ul>
  2385. </div>
  2386. <!--CONNECTION TEXT-->
  2387. <div class="con-text">
  2388. BFF!
  2389. </div>
  2390. </div>
  2391. </div>
  2392. </div>
  2393.  
  2394.  
  2395.  
  2396. </div>
  2397. <!--END COPY HERE-->
  2398.  
  2399.  
  2400.  
  2401. </main>
  2402.  
  2403.  
  2404. <aside>
  2405. <ul>
  2406. <li>
  2407. <img src='https://i.pinimg.com/564x/36/f9/f8/36f9f848fcca889ddf259b76fb83c546.jpg?b=tg'>
  2408. </li>
  2409. <li>
  2410. <img src='https://i.pinimg.com/564x/30/19/76/3019768f45e0f37b81252922b084e0ae.jpg'>
  2411. </li>
  2412. <li>
  2413. <img src='https://i.pinimg.com/564x/78/4c/28/784c286fd0d1cd7c72d81557b39227d5.jpg'>
  2414. </li>
  2415. <li>
  2416. <img src='https://i.pinimg.com/564x/4b/e1/9a/4be19acc9a7ffbfa602f81c799c41d1f.jpg'>
  2417. </li>
  2418. <li>
  2419. <img src='https://i.pinimg.com/564x/a9/cb/9a/a9cb9a82421168512f52900f9552acfe.jpg'>
  2420. </li>
  2421. </ul>
  2422.  
  2423. </aside>
  2424. </div>
  2425.  
  2426. <script>
  2427. $( document ).ready(function() {
  2428. $('body').append(
  2429. '<div id="nnspc" style="position: absolute; bottom: 0; padding: 10px; background: #181818;"><a style="font-family: helvetica; font-weight: bold; letter-spacing: -1px; color: #fff;" href="https://nonspace.tumblr.com">nonspace.</a></div>'
  2430. );
  2431.  
  2432. /*TABS*/
  2433. $('.tab:first-of-type').addClass('current');
  2434. $('aside li:first-of-type').addClass('active');
  2435.  
  2436. $('aside li').on('click', function(e) {
  2437. var currentAttrValue = ':nth-of-type(' + ($(this).index() + 1) + ')';
  2438.  
  2439. window.location.hash = $(this).attr('data-tab');
  2440.  
  2441. $('.tab' + currentAttrValue).addClass('current').siblings('.tab').removeClass('current');
  2442. $(this).addClass('active').siblings('aside li').removeClass('active');
  2443. });
  2444.  
  2445. /*POPUP*/
  2446. /*opens popup on click*/
  2447. $(".connections img").on('click', function() {
  2448. var currentIndex = $(this).index() + 3;
  2449. var currentAttrValue = $(this).parents('.tab').index() + 1;
  2450.  
  2451. var currentLoc = ".tab.current .popup:nth-of-type(" + currentIndex + ')';
  2452.  
  2453. console.log(currentLoc);
  2454.  
  2455. $(this).addClass('active').siblings('.connections img').removeClass('active');
  2456.  
  2457. $('.popup').fadeOut();
  2458. $(currentLoc).fadeIn().css('display', 'flex');
  2459. $(document.body).addClass('noscroll'); /*noscroll on background*/
  2460. });
  2461.  
  2462. $(".popup").on('click', function() {
  2463. $(this).fadeOut();
  2464. $(document.body).removeClass('noscroll');
  2465. $('.connections img').removeClass('active');
  2466. });
  2467. /*prevent closing popup by clicking on it*/
  2468. $('.popup-inner').click(function (e) {
  2469. e.stopPropagation();
  2470. });
  2471. });
  2472. </script>
  2473.  
  2474. </body>
  2475. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement