From cade848b78d7f06b69a195f5a543b23c25eedd14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tel=C3=A9rico=20Jones?= Date: Sat, 29 May 2021 21:09:08 -0300 Subject: blog.sh project start --- header.sh | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 header.sh (limited to 'header.sh') diff --git a/header.sh b/header.sh new file mode 100644 index 0000000..2e9f467 --- /dev/null +++ b/header.sh @@ -0,0 +1,106 @@ +#!/bin/bash + +cat <
+ header h1, header h2 { + text-align: left; + line-break: anywhere; + } + + header .separator-wrap { + margin-top: 15px; + } + + .cursor { + background-color: var(--primary-fg); + animation-name: blink-animation; + animation-duration: 500ms; + animation-iteration-count: infinite; + animation-timing-function: cubic-bezier(0.83,-0.22, 0.54, 0.55); + } + + @keyframes blink-animation { + to { + opacity: 0; + } + } + + .mobile { display: none; } + + @media screen and (max-width: 769px) { + .mobile { display: block; } + .desktop { display: none; } + } + + + + +
+

$ echo "Jefferson Julio" >> ./programadores

+

$ echo "Jefferson Julio" \\
>> ./programadores

+
+
+HEADER -- cgit v1.2.3