diff --git a/src/assets/css/forms.css b/src/assets/css/forms.css new file mode 100644 index 0000000..2415722 --- /dev/null +++ b/src/assets/css/forms.css @@ -0,0 +1,47 @@ +/* All forms, and buttons styles */ +/* Resets in their propper file */ + +.btn { + display: inline-block; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #fff; + text-align: center; + text-decoration: none; + vertical-align: middle; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + border: 1px solid #0d6efd; + border-radius: 0.375rem; + background-color: #0d6efd; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} + +.btn:hover { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; +} +.btn:focus-visible { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, .5); +} +.btn:first-child:active, .btn.active{ + color: #fff; + background-color: #0a58ca; + border-color: #0a53be; +} +.btn:disabled, .btn.disabled { + color: #fff; + pointer-events: none; + background-color: #0d6efd; + border-color: #0d6efd; + opacity: 0.65; + } diff --git a/src/assets/css/style.css b/src/assets/css/style.css index 870b18d..f8bdd87 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -17,4 +17,5 @@ @import 'nav.css'; @import 'profile.css'; @import 'queries.css'; -@import 'gpx.css'; \ No newline at end of file +@import 'gpx.css'; +@import 'forms.css'; \ No newline at end of file diff --git a/src/blog/2-bitocoin-and-the-lightning-network.njk b/src/blog/2-bitocoin-and-the-lightning-network.njk index 5012536..50a0dfe 100644 --- a/src/blog/2-bitocoin-and-the-lightning-network.njk +++ b/src/blog/2-bitocoin-and-the-lightning-network.njk @@ -17,6 +17,7 @@ tags:
  • lightning-landscape.net: The great panorama of the ecosystem.
  • TheBlock.co On-Chain Metris.
  • lopp.net: Great resources list by James Loop.
  • +
  • PoW, PoS & Crypto Staking simply explained
  • diff --git a/src/blog/6-jquery-codex.njk b/src/blog/6-jquery-codex.njk index 7517df8..aeead98 100644 --- a/src/blog/6-jquery-codex.njk +++ b/src/blog/6-jquery-codex.njk @@ -29,27 +29,63 @@ tags: These are the examples of how to use the jQuery Codex to achieve completely and absolutely unproductive text effects.

    -
    -
    - -
    -
    -
    -
    Thomas Kennerly Wolfe Jr.
    -
    - -
    -
    - +
    +

    +

    Thomas Kennerly Wolfe Jr.

    + The "Typewriter" effect +

    +
    jQuery('#codex5').codex({
    +    effect: 'typewriter', 
    +    speed: 50, 
    +    reveal: 50
    +});
    +

    +

    Hunter S. Thompson

    + Efecto "Char by Char" +

    +
    jQuery("#codex4").codex({
    +    effect: "charbychar",
    +    keep_whitespaces: false,
    +    speed: 50,
    +    reveal: 100
    +});
    +

    +

    Roberto Arlt

    + Efecto normie (slow) +

    +
    jQuery("#codex2").codex({
    +    speed: 80,
    +    duration: 6000
    +});
    +
    \ No newline at end of file