diff options
author | joe <rbo@gmx.us> | 2025-10-13 12:08:27 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-10-13 12:08:27 +0200 |
commit | 91f797101fdf3b2da27bd25f009a737048f23f8b (patch) | |
tree | ef777e937bd5e68a3a62fb69b22f757113767ff3 /.config | |
parent | up (diff) | |
download | dotfiles-bsd-91f797101fdf3b2da27bd25f009a737048f23f8b.tar.gz dotfiles-bsd-91f797101fdf3b2da27bd25f009a737048f23f8b.tar.bz2 dotfiles-bsd-91f797101fdf3b2da27bd25f009a737048f23f8b.tar.xz dotfiles-bsd-91f797101fdf3b2da27bd25f009a737048f23f8b.tar.zst dotfiles-bsd-91f797101fdf3b2da27bd25f009a737048f23f8b.zip |
up
Diffstat (limited to '.config')
-rw-r--r-- | .config/browsers/home.css | 7 | ||||
-rw-r--r-- | .config/browsers/home.html | 11 |
2 files changed, 18 insertions, 0 deletions
diff --git a/.config/browsers/home.css b/.config/browsers/home.css new file mode 100644 index 0000000..fcd08e6 --- /dev/null +++ b/.config/browsers/home.css @@ -0,0 +1,7 @@ +body { + width: 100%; + height: 100%; + font-family: sans-serif; + color: #ebdbb2; + background-color: #1d2021; +} diff --git a/.config/browsers/home.html b/.config/browsers/home.html new file mode 100644 index 0000000..2b4db6e --- /dev/null +++ b/.config/browsers/home.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> + <head> + <title>joe's homepage</title> + <meta charset="UTF-8"> + <link rel="stylesheet" type="text/css" href="home.css"> + </head> + <body> + <h1>hey</h1> + </body> +</html> |