From 38961832e9e1ef2148a21ff26da725e80b16542f Mon Sep 17 00:00:00 2001 From: Daniel Cortes Date: Fri, 22 May 2020 01:56:57 -0400 Subject: [PATCH] Cambiado todo --- custom.css | 53 ---------- index.html | 276 ++++++++++++++++++++++++++++++++++------------------- sync.sh | 7 ++ 3 files changed, 185 insertions(+), 151 deletions(-) delete mode 100644 custom.css mode change 100644 => 100755 index.html create mode 100755 sync.sh diff --git a/custom.css b/custom.css deleted file mode 100644 index f79fae6..0000000 --- a/custom.css +++ /dev/null @@ -1,53 +0,0 @@ -:root { - --bg-color: #212121; - --fg-color: #EEFFFF; - --b3-color: #89DDFF; - --b2-color: #FFCB6B; - --b1-color: #FF5370; -} -body { - background: var(--bg-color); - line-height: 1.4em; - letter-spacing: .1em; -} - -.flex { - display: flex; - margin-left: 10vw; - margin-right: 10vw; - justify-content: center; - height: 100vh; - flex-direction: column; -} - -.search { - width: 100%; - display: block; - padding: 10px 10px 10px 10px; - margin-bottom: 2em; - border-radius: 5px; - background: var(--bg-color); - border: var(--b1-color) solid 1px; - color: var(--fg-color); -} - -.title { - color: var(--b1-color); - display: inline-block; - text-align: right -} - -.separator { - color: var(--b2-color); - display: inline-block; -} - -.item { - text-decoration: none; - color: var(--b3-color); - display: inline-block; -} - -.item:hover { - text-decoration: underline; -} diff --git a/index.html b/index.html old mode 100644 new mode 100755 index bc3a360..77c9038 --- a/index.html +++ b/index.html @@ -1,100 +1,180 @@ - - - - - Start - - - - -
-
-
- -
-
-
- general - » - twitter - youtube - hacker_news - lobsters - dev.to -
-
- reddit - » - just_reddit - /r/unixporn - /r/chile - /r/programming - /r/vim - /r/piracy -
-
- 4chan - » - /wg/ - /g/ - /v/ - /x/ -
-
- tools - » - regexr - github - sourcehut - digitalocean - trello - calendar - transtale - unsplash -
-
- blogs - » - drew_devault - luke_smith - bisqwit - hookrace - julia_evans - uf4no - quanttype - joem - craig - nurkiewicz - castel - eevee - codinghorror - jessie - jrl -
-
- down - » - rutracker - rutor - 1337x.to - thepiratebay - modarchive -
-
- inacap - » - home - intranet - aprendizaje -
-
- stardew_valley - » - /r/stardewvalley - /r/FarmsofStardewValley - /r/StardewHomeDesign - wiki -
+ + + + + + Start + + + + +
+ +
+ General +
+ [twitter] + [youtube] + [hacker_news] + [lobsters] + [whatsapp]
- + + Inacap +
+ [home] + [intranet] + [aprendizaje] + [docs] +
+ + Reddit +
+ [frontpage] + [/r/unixporn] + [/r/piracy] + [/r/roms] + [/r/chile] +
+ + 4chan +
+ [/g/] + [/wg/] + [/v/] + [/x/] +
+
+
+ + diff --git a/sync.sh b/sync.sh new file mode 100755 index 0000000..5d66410 --- /dev/null +++ b/sync.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +cd $(dirname "$(readlink -f "$0")") + +minify index.html > index.min.html +rsync -av "index.min.html" "sky:~/start/index.html" +rm index.min.html