diff --git a/static/karbs/css/karbs.css b/static/karbs/css/karbs.css index 5e9f694..aba56ea 100644 --- a/static/karbs/css/karbs.css +++ b/static/karbs/css/karbs.css @@ -1,7 +1,5 @@ main { - border-color: #30363d; - border-style: solid; - border-width: 1px; + border: 1px solid #30363d; max-width: 700px; color: #f0f6fc; padding: 50px; diff --git a/static/main/css/layout.css b/static/main/css/layout.css index 0762c80..f5826aa 100644 --- a/static/main/css/layout.css +++ b/static/main/css/layout.css @@ -1,90 +1,3 @@ -html, -body, -div, -span, -applet, -object, -iframe, -h1, -h2, -h3, -h4, -h5, -h6, -p, -blockquote, -pre, -a, -abbr, -acronym, -address, -big, -cite, -code, -del, -dfn, -em, -img, -ins, -kbd, -q, -s, -samp, -small, -strike, -strong, -sub, -sup, -tt, -var, -b, -u, -i, -center, -dl, -dt, -dd, -ol, -ul, -li, -fieldset, -form, -label, -legend, -table, -caption, -tbody, -tfoot, -thead, -tr, -th, -td, -article, -aside, -canvas, -details, -embed, -figure, -figcaption, -footer, -header, -hgroup, -menu, -nav, -output, -ruby, -section, -summary, -time, -mark, -audio, -video { - margin: 0; - padding: 0; - border: 0; - vertical-align: baseline; -} - html, body { font-family: 'Roboto', sans-serif; diff --git a/static/main/css/reset.css b/static/main/css/reset.css new file mode 100644 index 0000000..dfe5cbd --- /dev/null +++ b/static/main/css/reset.css @@ -0,0 +1,123 @@ +/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */ +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video { + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; + margin: 0; + padding: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} +body { + line-height: 1; +} +ol, +ul { + list-style: none; +} +blockquote, +q { + quotes: none; +} +blockquote:before, +blockquote:after, +q:before, +q:after { + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/templates/karbs/instructions.html b/templates/karbs/instructions.html index 2d3ba2c..79140fe 100644 --- a/templates/karbs/instructions.html +++ b/templates/karbs/instructions.html @@ -1,51 +1,73 @@ {% extends 'layout.html' %} {% load static %} -{% block title %} {{ title }} {% endblock %} +{% block title %}{{ title }}{% endblock %} {% block meta %} - + {% endblock %} {% block content %} -
KARBS is an efficient shell script that will install a fully-featured tiling window manager-based system on any +
+ KARBS is an efficient shell script that will install a fully-featured tiling window manager-based system on any Arch or Artix - Linux-based system, without any of the routine of manual post-install processes and configuration.
-By default, KARBS installs and deploys - my own personal dotfiles.
- -On any (preferrably fresh) install of an + Linux-based system, without any of the routine of manual post-install processes and configuration. +
++ By default, KARBS installs and deploys + my own personal dotfiles. +
+
+ On any (preferrably fresh) install of an
Arch or
Artix
- Linux, make sure curl is installed and just run the following as the root user:
curl is installed and just run the following as the root user:
+
curl -LO krisrofers.xyz/karbs.sh
sh karbs.sh
-
- Note that the KARBS scripts will not partition any drives or wipe anything, but when it deploys the dotfiles, it will overwrite any preexisting files: e.g. the KARBS .zshrc will replace your old .zshrc, etc.
- -You can check out the programs list that KARBS parses for installation right here!
- ++ Note that the KARBS scripts will not partition any drives or wipe anything, but when it deploys the dotfiles, it will overwrite any preexisting files: e.g. the KARBS .zshrc will replace your old .zshrc, etc. +
++ You can check out the programs list that KARBS parses for installation right here! +
Here is some idea of the programs installed:
- - - +Note that making your own fork of KARBS is as easy as using your own dotfiles, making a programs file like the one above, and making any other direct changes to the script you want.
++ Note that making your own fork of KARBS is as easy as using your own dotfiles, making a programs file like the one above, and making any other direct changes to the script you want. +
{% endblock %} diff --git a/templates/layout.html b/templates/layout.html index 06f585d..d8e62e7 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -3,30 +3,39 @@ - + -At the moment this website is under construction.
-For now you can check out KARBS.
++ For now you can check out KARBS. +