Advertisement
NecromancerCoding

Webfonts Página

Nov 19th, 2019
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 6.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.     <title>Webfonts</title>
  4.     <link rel="shortcut icon" type="image/x-icon" href="https://i.imgur.com/QbwPp0h.png"/>
  5.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  6.     <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"/>
  8.         <script src="https://static.tumblr.com/zd7jnbb/TDPpnlgj3/jquery.style-my-tooltips.js"></script>
  9.         <link href="https://static.tumblr.com/zd7jnbb/nzwpnlgii/style-my-tooltips.css"/>
  10.         <script>(function($){$(document).ready(function(){$("[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0 });});})(jQuery);</script>
  11. <style>
  12. #s-m-t-tooltip{
  13.   display:block;
  14.   position:absolute;
  15.   /* basic */
  16.   max-width:300px;
  17.   z-index: 999;
  18.   margin:14px 14px 7px 12px;
  19.   /* style and design */
  20.   padding:8px;
  21.   background:#fafafa; /* fallback if rgba not supported */
  22.   background:rgba(255,255,255,0.95);
  23.   -moz-border-radius:1px;
  24.   -webkit-border-radius:1px;
  25.   border-radius:1px;
  26.   border:1px solid #ccc;
  27.   /* font */
  28.   font-family:Calibri,sans-serif;
  29.   font-size:11px;
  30.   font-weight:bold;
  31.   text-transform:uppercase;
  32.   line-height:16px;
  33.   color:var(--color-sombra);
  34. }
  35. body{
  36.     background:#f0f0f0;
  37. }
  38. :root{
  39.     --color-acento:#aab9c1;
  40.     --color-sombra:#b68c8d;
  41.     --color-code:#92b68c;
  42.     --color-graphic:#d1c192;
  43.     --color-tumblr:#938cb6;
  44. }
  45. :-webkit-scrollbar{
  46.     width:3px;
  47.     height:3px;
  48. }
  49. :-webkit-scrollbar-track{
  50.     background:var(--color-acento);
  51. }
  52. :-webkit-scrollbar-thumb{
  53.     bacgkround:#fafafa;
  54. }
  55.    
  56. .navegacion{
  57.     width:100%;
  58.     position:fixed;
  59.     top:0px;
  60.     left:0px;
  61.     background:#fafafa;
  62.     border-bottom:1px solid #ddd;
  63.     display:flex;
  64.     justify-content:flex-start;
  65.     align-items:center;
  66.     height:50px;
  67. }
  68. .navegacion a{
  69.     color:white;
  70.     background:var(--color-acento);
  71.     text-shadow:1px 1px 0px rgba(0,0,0,0.1), -1px -1px 0px rgba(0,0,0,0.1),1px -1px 0px rgba(0,0,0,0.1),-1px 1px 0px rgba(0,0,0,0.1);
  72.     height:inherit;
  73.     width:80px;
  74.     display:flex;
  75.     justify-content:center;
  76.     align-items:center;
  77.     text-decoration:none;
  78.     border-right:1px solid rgba(0,0,0,0.08);
  79. }
  80. .navegacion a:first-of-type{
  81.     background:var(--color-sombra);
  82. }
  83. .sidebar{
  84.     position:fixed;
  85.     top:80px;
  86.     left:30px;
  87. }
  88. .sidebar1{
  89.     background:#fafafa;
  90.     width:200px;
  91.     height:150px;
  92.     padding:15px;
  93.     border:1px solid #ddd;
  94.     outline:1px solid #fff;
  95.     box-shadow:0 0 2px #aaa;
  96.     text-align:center;
  97. }
  98. .sidebar1 img{
  99.     width:80px;
  100.     height:80px;
  101.     border-radius:100%;
  102.     border:3px solid white;
  103.     box-shadow:0 0 2px #ccc;
  104. }
  105. .sidebar1 p{
  106.     text-align:justify;
  107.     font:10px calibri;
  108.     color:#444;
  109.     margin: 10px 0 0;
  110. }
  111. .body{
  112.     margin: 80px auto 0px 300px;
  113.     display:flex;
  114.     width:calc(100% - 330px);
  115.     justify-content:center;
  116.     align-items:baseline;
  117.     flex-wrap:wrap;
  118. }
  119. .fuente{
  120.     font-size:20px;
  121.     line-height:30px;
  122.     display:flex;
  123.     justify-content:center;
  124.     align-items:center;
  125.     flex-wrap:wrap;
  126.     flex-direction:column;
  127.     text-align:center;
  128.     color:var(--color-sombra);
  129.     position:relative;
  130.     margin: 10px;
  131. }
  132. .fuente h1{
  133.     font-weight:400;
  134. }
  135. .fuente textarea{
  136.     background:#fafafa;
  137.     width:160px;
  138.     height:40px;
  139.     border:10px solid #fafafa;
  140.     overflow:auto;
  141.     display:block;
  142.     font-size:9px;
  143. }
  144. .fuente .thin{
  145.     cursor:pointer;
  146.     width:25px;
  147.     height:25px;
  148.     font-size:10px;
  149.     font-family:calibri;
  150.     font-weight:300;
  151.     display:flex;
  152.     justify-content:center;
  153.     align-items:center;
  154.     position:absolute;
  155.     right:-25px;
  156.     top:-25px;
  157.     background:var(--color-acento);
  158.     color:white;
  159.     border-radius:100%;
  160. }
  161. .fuente .bold{
  162.     content:"700";
  163.     cursor:pointer;
  164.     width:25px;
  165.     height:25px;
  166.     font-size:10px;
  167.     font-family:calibri;
  168.     font-weight:700;
  169.     display:flex;
  170.     justify-content:center;
  171.     align-items:center;
  172.     position:absolute;
  173.     right:-25px;
  174.     top:5px;
  175.     background:var(--color-acento);
  176.     color:white;
  177.     border-radius:100%;
  178. }
  179. .fuente.tactive h1{
  180.     font-weight:300!important;
  181. }
  182. .fuente.tactive .thin{
  183.     background:var(--color-sombra);
  184. }
  185. .fuente.bactive h1{
  186.     font-weight:700!important;
  187. }
  188. .fuente.bactive .bold{
  189.     background:var(--color-sombra);
  190. }
  191. </style>
  192. <link href="https://dl.dropbox.com/s/bh0ho3jhnlfm2xd/AlexDirte.css" rel="stylesheet"/>
  193. <link href="https://dl.dropbox.com/s/pxanj21qaxbsdf4/Signerica.css" rel="stylesheet"/>
  194. <link href="https://dl.dropbox.com/s/ermarjfdu3dzx92/TamoroScript.css" rel="stylesheet"/>
  195.  
  196. </head>
  197.  
  198.  
  199. <body>
  200.     <div class="navegacion">
  201.         <a href="/" title="Volver al Tumblr"><i class="far fa-gem"></i></a>
  202.         <a href="https://necromancercoding.tumblr.com/tagged/ncodes" title="Tag de códigos"><i class="fas fa-code"></i></a>
  203.         <a href="https://necromancercoding.tumblr.com/tagged/ncpsd" title="Tag de gráficos"><i class="fab fa-adobe"></i></a>
  204.         <a href="/ask" title="Askbox"><i class="fas fa-comments"></i></a>
  205.     </div>
  206.    
  207.     <div class="sidebar">
  208.         <div class="sidebar1"><img src="https://static.tumblr.com/9f485485b1aa82f309f55d1020322a5f/zd7jnbb/IvCpvwbke/tumblr_static_dykkparwrpk4w80sc4gssk48w.jpg"/><p>Aquí podrás encontrar webfonts que he acomodado para uso en mis tablillas, que puedes usar también en las tuyas.</p></div>
  209.     </div>
  210.     <div class="body">
  211.         <div class="fuente">
  212.         <h1 style="font-family:Alex Dirte;">Alex Dirte</h1>
  213.         <textarea>
  214.         <link href="https://dl.dropbox.com/s/bh0ho3jhnlfm2xd/AlexDirte.css" rel="stylesheet"/>
  215.         </textarea>
  216.         </div>
  217.         <div class="fuente">
  218.         <span class="thin">300</span>
  219.         <span class="bold">700</span>
  220.         <h1 style="font-family:Signerica;">Signerica</h1>
  221.         <textarea>
  222.         <link href="https://dl.dropbox.com/s/pxanj21qaxbsdf4/Signerica.css" rel="stylesheet"/>
  223.         </textarea>
  224.         </div>
  225.         <div class="fuente">
  226.         <h1 style="font-family:Tamoro Script;">Tamoro Script</h1>
  227.         <textarea>
  228.         <link href="https://dl.dropbox.com/s/ermarjfdu3dzx92/TamoroScript.css" rel="stylesheet"/>
  229.         </textarea>
  230.         </div>
  231.     </div>
  232. <script>
  233. $(document).ready(function(){
  234.     $('.fuente .thin').click(function(){
  235.         $(this).parent('.fuente').toggleClass('tactive');
  236.         $(this).parent('.fuente').removeClass('bactive');
  237.     });
  238.     $('.fuente .bold').click(function(){
  239.         $(this).parent('.fuente').toggleClass('bactive');
  240.         $(this).parent('.fuente').removeClass('tactive');
  241.     });
  242.     });
  243. </script>
  244. </body>
  245. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement