diff --git a/android-chrome-192x192.png b/android-chrome-192x192.png new file mode 100644 index 0000000..ca33bfe Binary files /dev/null and b/android-chrome-192x192.png differ diff --git a/android-chrome-512x512.png b/android-chrome-512x512.png new file mode 100644 index 0000000..fe98d2b Binary files /dev/null and b/android-chrome-512x512.png differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png new file mode 100644 index 0000000..4224b00 Binary files /dev/null and b/apple-touch-icon.png differ diff --git a/favicon-16x16.png b/favicon-16x16.png new file mode 100644 index 0000000..a0ecbf1 Binary files /dev/null and b/favicon-16x16.png differ diff --git a/favicon-32x32.png b/favicon-32x32.png new file mode 100644 index 0000000..1fe5825 Binary files /dev/null and b/favicon-32x32.png differ diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..67edf3e Binary files /dev/null and b/favicon.ico differ diff --git a/favicon_io.zip b/favicon_io.zip new file mode 100644 index 0000000..81d248a Binary files /dev/null and b/favicon_io.zip differ diff --git a/index.css b/index.css index 9cb9c60..6ee6cb5 100644 --- a/index.css +++ b/index.css @@ -2,8 +2,21 @@ box-sizing: border-box; } +:root{ + --background: #333; + --margin: 5px; + --border_width: 2px; + --default_border_color: rgba(255,255,0,0.6); + --focused_border_color: rgba(255,0,0,0.6); + --floating_border_color: rgba(255,255,0,0.6); +} + html, body{ - background-color: #333; + background: var(--background); + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; color: #FFF; padding: 0; margin:0; @@ -28,6 +41,7 @@ h1{ z-index: 2; position: relative; margin-bottom: 4em; + border: var(--border_width) solid var(--floating_border_color); background-color: rgba(0,0,0,0.8); padding-left: 5vw; padding-top: 1em; @@ -36,6 +50,19 @@ h1{ } nav{ + z-index: 3; + background: rgba(0,0,0,0.8); + border: var(--border_width) solid var(--floating_border_color); + padding: 0.5em; + border-radius: 4px; + position:fixed; + top: 0px; + right: 0px; +} + +nav select{ + height: 30px; + border-radius: 10px; } h2{ @@ -60,15 +87,23 @@ section { section { position: relative; z-index: 2; - border-right: 1px solid rgba(255,255,0,0.6); + /* To show everything, like the WM itself does */ + left: var(--border_width); +/* border-right: 1px solid rgba(255,255,0,0.6); border-top: 1px solid rgba(255,255,0,0.6); border-bottom: 1px solid rgba(255,255,0,0.6); +*/ + border: var(--border_width) solid var(--default_border_color); margin: 3em 0; padding: 1em 5vw 1em 5vw; background-color: rgba(0,0,0,0.9); border-radius: 4px; } +section:hover, h1:hover, nav:hover{ + border: var(--border_width) solid var(--focused_border_color); +} + .screenshot{ width: 49%; } diff --git a/index.html b/index.html index 97953fa..c9274f6 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,13 @@ LeftWM - A tiling window manager for Adventurers + + + + + + + diff --git a/site.webmanifest b/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file