From 47f77c02356092339afd11ae17d6999eca8481d6 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Wed, 10 Jan 2024 11:08:48 +0100 Subject: [PATCH] refactor --- technology/applications/media/MPV.md | 8 ++-- technology/internet/TailwindCSS.md | 38 ++++++++++++++++++- .../tools/Ansible/modules/Ansible Modules.md | 4 +- 3 files changed, 43 insertions(+), 7 deletions(-) diff --git a/technology/applications/media/MPV.md b/technology/applications/media/MPV.md index 039aa7a..eca31f8 100644 --- a/technology/applications/media/MPV.md +++ b/technology/applications/media/MPV.md @@ -328,11 +328,11 @@ Usage: `mpv [options] [file|URL|PLAYLIST|-]` [URL](../../internet/URL.md) of the HTTP/HTTPS proxy. If this is set, the `http_proxy` environment is ignored. The `no_proxy` environment variable is still respected. This option is silently ignored if it does not start with `http://`. Proxies are not used for https URLs. Setting this option does not try to make the ytdl script use the proxy. ## Video Filters -#todo -> $ mpv -vf=help +#refactor -> $ mpv -vf=help To see a list of all available video filters: `mpv -vf=help` ## Audio Filters -#todo -> $ mpv -af=help +#refactor -> $ mpv -af=help To see a list of all available audio filters: `mpv -af=help` ## Encoding @@ -368,10 +368,10 @@ Each line maps a key to an input command. Keys are specified with their literal Syntax: `[Shift+][Ctrl+][Alt+][Meta+] [{
}] ( ; )*` ### List of Input Commands -#todo -> https://mpv.io/manual/stable/#list-of-input-commands +#refactor -> https://mpv.io/manual/stable/#list-of-input-commands ### List of Properties -#todo -> https://mpv.io/manual/stable/#property-list +#refactor -> https://mpv.io/manual/stable/#property-list ## Configuration You can put all of the options in configuration files which will be read every time mpv is run. The system-wide configuration file 'mpv.conf' is in your configuration directory (e.g. `/etc/mpv` or `/usr/local/etc/mpv`), the user-specific one is `~/.config/mpv/mpv.conf`. diff --git a/technology/internet/TailwindCSS.md b/technology/internet/TailwindCSS.md index 2486246..d6b56e6 100644 --- a/technology/internet/TailwindCSS.md +++ b/technology/internet/TailwindCSS.md @@ -4,4 +4,40 @@ website: https://tailwindcss.com --- # Tailwind CSS -#wip #🐇 #notnow \ No newline at end of file +Tailwind CSS is a utility-first CSS framework that provides a set of low-level utility classes to build designs directly in your markup. It's a highly customizable and efficient way to create modern, responsive user interfaces. + +## Setup +To use TailwindCSS include this in your documents header: +```html + +``` + +## Modifiers +You can modify when a utility class will become active by using `mod:` before the class name. + +Some modifiers include: +- `hover` +- `focus` +- `active` +- `disabled` +- `invalid` +- `first` +- `last` +- `even` +- `odd` + +This modifier is used for dark mode: +- `dark` + +These modifers are used for device orientation: +- `landscape` +- `portrait` + +These modifers are used for responsive design and reresent their respective screen sizes when a class will become active: +- `sm` +- `md` +- `lg` +- `xl` +- `2xl` + +For a list of all classes see the [documentation](https://tailwindcss.com/docs). \ No newline at end of file diff --git a/technology/tools/Ansible/modules/Ansible Modules.md b/technology/tools/Ansible/modules/Ansible Modules.md index 2e40a75..bf385bf 100644 --- a/technology/tools/Ansible/modules/Ansible Modules.md +++ b/technology/tools/Ansible/modules/Ansible Modules.md @@ -1,8 +1,8 @@ # Ansible Modules -#wip #todo #notnow +#wip #refactor #notnow -#todo -> explain modules, sort modules by usage cat +#refactor -> explain modules, sort modules by usage cat ## Builtin - [ansible.builtin.assert](ansible.builtin.assert.md)