diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/assets/version2_icons/disc_logo.png b/assets/version2_icons/disc_logo.png new file mode 100644 index 0000000..fe38079 Binary files /dev/null and b/assets/version2_icons/disc_logo.png differ diff --git a/assets/version2_icons/document_logo.jpg b/assets/version2_icons/document_logo.jpg new file mode 100644 index 0000000..d2dcc21 Binary files /dev/null and b/assets/version2_icons/document_logo.jpg differ diff --git a/assets/version2_icons/document_logo.png b/assets/version2_icons/document_logo.png new file mode 100644 index 0000000..cdf62a9 Binary files /dev/null and b/assets/version2_icons/document_logo.png differ diff --git a/assets/version2_icons/pr_logo.png b/assets/version2_icons/pr_logo.png new file mode 100644 index 0000000..081af6c Binary files /dev/null and b/assets/version2_icons/pr_logo.png differ diff --git a/assets/version2_icons/release_logo.png b/assets/version2_icons/release_logo.png new file mode 100644 index 0000000..117b380 Binary files /dev/null and b/assets/version2_icons/release_logo.png differ diff --git a/docs/version2/index.html b/docs/version2/index.html new file mode 100644 index 0000000..871f66e --- /dev/null +++ b/docs/version2/index.html @@ -0,0 +1,48 @@ + + + + + + + + + + + + xplr + + + +

xplr

+ +
+
+

A hackable, minimal, fast TUI file explorer


+

Learn more

+
+
+ +
+
+ + + + + \ No newline at end of file diff --git a/docs/version2/style.css b/docs/version2/style.css new file mode 100644 index 0000000..db6775b --- /dev/null +++ b/docs/version2/style.css @@ -0,0 +1,85 @@ +@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap'); + +*{ + padding: 0; + margin: 0; +} + + +body{ + color: #2d3436; +} + + +h1{ + padding-left: 5px; + font-family: 'Share Tech Mono', monospace; + font-size: 3.5rem; + padding-top: 3vh; + padding-left: 4rem; +} + +.main-page{ + display: grid; + grid-template-columns: repeat(2, 1fr); + background-color: #dfe6e9; + margin-top: 3vh; + min-height: 87vh; +} + +.para{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: Arial, Helvetica, sans-serif; + font-size: 2rem; + color: rgba(0, 0, 0, 0.9); +} +.para .more a{ + font-size:1.5rem; + color: #636e72; +} + +.main-video{ + display: flex; + justify-content: center; + align-items: center; +} +.main-video img{ + margin-right: 2rem; +} + +.links{ + display: grid; + grid-template-columns: repeat(2, 1fr); + grid-gap: 2rem; + margin: 5rem 0; +} +.links .linkCad{ + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + height: 40vh; + box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15); + color: #2d3436; + font-family: sans-serif; + cursor: pointer; +} +.links .linkCad:hover{ + box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2); +} +.links a{ + text-decoration: none; +} +.links .linkCad p{ + padding-top: 2rem; + font-weight: 600; +} +.mrgL{ + margin-left: 60%; +} +.mrgR{ + margin-right: 60%; +}