diff --git a/github-page/css/normalize.min.css b/github-page/css/normalize.min.css new file mode 100644 index 0000000..87aa24d --- /dev/null +++ b/github-page/css/normalize.min.css @@ -0,0 +1,2 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none} +/*# sourceMappingURL=normalize.min.css.map */ \ No newline at end of file diff --git a/github-page/css/style.css b/github-page/css/style.css new file mode 100644 index 0000000..c719efb --- /dev/null +++ b/github-page/css/style.css @@ -0,0 +1,222 @@ +/* general */ +:root { + --dark1: #252529; + --dark2: #2e2e32; + --grey1: #cbcbce; + --grey2: #868686; + --grey3: #cacaca; + --yellow: #e8bc56; + --orange: #e39747; + --purple: #a691ff; + --magenta: #f598db; + --neonblue: #00bcd4; + --rxipink: #e81633; +} + +body { + font-family: 'Inter', sans-serif +} + +.section { + display: flex; + flex-direction: column; + padding: 40px; +} + +h1 { + text-align: center; + font-weight: 100; + font-size: 90px; + font-size: 60px; +} + +.info_p { + font-weight: 300; + font-size: 24px; + padding-left: 30px; + padding-right: 30px; + max-width: 1080px; + margin-left: auto; + margin-right: auto; + margin-top: 60px; +} + +/* buttons */ +.button-link { + margin-left: 5px; + margin-right: 5px; + text-decoration: none; + padding: 20px 35px; + border-radius: 5px; +} + +.button-link:hover { + color: white; + background-color: #000; +} + +.button-link .button-head { + font-size: 32px; + font-weight: 400; +} + +.button-link .button-sub { + font-size: 18px; + font-weight: 200; +} + +.grey-btn { + color: var(--dark); + background-color: var(--grey3); +} + +.purple-btn { + color: var(--dark); + background-color: var(--purple); +} + +/* head */ +.head { + background-color: var(--dark1); +} + +.head h1 { + margin: 0px; + color: white; +} + +.head p { + text-align: center; + font-weight: 200; + font-size: 24px; + color: var(--grey1); +} + +.head p .lite { + color: white; +} + +.head p .lua { + color: var(--purple); +} + +.head .head-btns { + display: flex; + margin-bottom: 25px; + justify-content: center; +} + +/* overview */ +.overview { + background-color: var(--grey1); +} + +.overview h1 { + margin: 0px; + color: var(--dark1); +} + +.overview .info_p { + color: var(--dark2); +} + +.overview-img-container img { + width: 100%; + border-radius: 5px; +} + +.overview-img-container { + max-width: 1080px; + margin-left: auto; + margin-right: auto; + margin-top: 25px; +} + +/* customization */ +.customization { + background-color: var(--dark1); +} + +.customization h1 { + margin: 0px; + color: white; +} + +.customization .info_p { + color: var(--grey1); +} + +.customization .info_p a { + color: var(--purple); +} + +.customization .info_p a:hover { + color: white; + background-color: black; +} + +.customization .customization-links .button-link { + margin: 5px; + width: 240px; +} + +.customization .customization-links { + max-width: 1080px; + margin-left: auto; + margin-right: auto; + margin-top: 50px; + display: flex; + justify-content: center; + flex-wrap: wrap; +} + +/* footer */ +.footer { + background-color: var(--grey1); +} +.footer a { + width: 50px; + margin: auto; +} + +.footer a img { + width: 100%; +} + +.footer a img:hover { + filter: grayscale(100%) contrast(180%); +} + +/* media-queries */ +@media screen and (max-width: 700px) { + h1 { + font-size: 48px; + } + + .button-link { + padding: 15px 28px; + } + + .button-link .button-head { + font-size: 24px; + } + + .button-link .button-sub { + font-size: 16px; + } + + .section { + padding: 30px; + } + + .info_p { + font-size: 18px; + margin-top: 30px; + padding-left: 0px; + padding-right: 0px; + } + + .customization .customization-links { + margin-top: 30px; + } +} diff --git a/github-page/favicon.ico b/github-page/favicon.ico new file mode 100644 index 0000000..724cb16 Binary files /dev/null and b/github-page/favicon.ico differ diff --git a/github-page/fonts/Inter-Black.woff b/github-page/fonts/Inter-Black.woff new file mode 100644 index 0000000..07800f4 Binary files /dev/null and b/github-page/fonts/Inter-Black.woff differ diff --git a/github-page/fonts/Inter-Black.woff2 b/github-page/fonts/Inter-Black.woff2 new file mode 100644 index 0000000..9a615e6 Binary files /dev/null and b/github-page/fonts/Inter-Black.woff2 differ diff --git a/github-page/fonts/Inter-BlackItalic.woff b/github-page/fonts/Inter-BlackItalic.woff new file mode 100644 index 0000000..8790638 Binary files /dev/null and b/github-page/fonts/Inter-BlackItalic.woff differ diff --git a/github-page/fonts/Inter-BlackItalic.woff2 b/github-page/fonts/Inter-BlackItalic.woff2 new file mode 100644 index 0000000..9dfced9 Binary files /dev/null and b/github-page/fonts/Inter-BlackItalic.woff2 differ diff --git a/github-page/fonts/Inter-Bold.woff b/github-page/fonts/Inter-Bold.woff new file mode 100644 index 0000000..61e1c25 Binary files /dev/null and b/github-page/fonts/Inter-Bold.woff differ diff --git a/github-page/fonts/Inter-Bold.woff2 b/github-page/fonts/Inter-Bold.woff2 new file mode 100644 index 0000000..6c401bb Binary files /dev/null and b/github-page/fonts/Inter-Bold.woff2 differ diff --git a/github-page/fonts/Inter-BoldItalic.woff b/github-page/fonts/Inter-BoldItalic.woff new file mode 100644 index 0000000..2de403e Binary files /dev/null and b/github-page/fonts/Inter-BoldItalic.woff differ diff --git a/github-page/fonts/Inter-BoldItalic.woff2 b/github-page/fonts/Inter-BoldItalic.woff2 new file mode 100644 index 0000000..80efd48 Binary files /dev/null and b/github-page/fonts/Inter-BoldItalic.woff2 differ diff --git a/github-page/fonts/Inter-ExtraBold.woff b/github-page/fonts/Inter-ExtraBold.woff new file mode 100644 index 0000000..433fb32 Binary files /dev/null and b/github-page/fonts/Inter-ExtraBold.woff differ diff --git a/github-page/fonts/Inter-ExtraBold.woff2 b/github-page/fonts/Inter-ExtraBold.woff2 new file mode 100644 index 0000000..5a08b36 Binary files /dev/null and b/github-page/fonts/Inter-ExtraBold.woff2 differ diff --git a/github-page/fonts/Inter-ExtraBoldItalic.woff b/github-page/fonts/Inter-ExtraBoldItalic.woff new file mode 100644 index 0000000..bd97df3 Binary files /dev/null and b/github-page/fonts/Inter-ExtraBoldItalic.woff differ diff --git a/github-page/fonts/Inter-ExtraBoldItalic.woff2 b/github-page/fonts/Inter-ExtraBoldItalic.woff2 new file mode 100644 index 0000000..97bda24 Binary files /dev/null and b/github-page/fonts/Inter-ExtraBoldItalic.woff2 differ diff --git a/github-page/fonts/Inter-ExtraLight.woff b/github-page/fonts/Inter-ExtraLight.woff new file mode 100644 index 0000000..39e6f97 Binary files /dev/null and b/github-page/fonts/Inter-ExtraLight.woff differ diff --git a/github-page/fonts/Inter-ExtraLight.woff2 b/github-page/fonts/Inter-ExtraLight.woff2 new file mode 100644 index 0000000..442e225 Binary files /dev/null and b/github-page/fonts/Inter-ExtraLight.woff2 differ diff --git a/github-page/fonts/Inter-ExtraLightItalic.woff b/github-page/fonts/Inter-ExtraLightItalic.woff new file mode 100644 index 0000000..a6e1d14 Binary files /dev/null and b/github-page/fonts/Inter-ExtraLightItalic.woff differ diff --git a/github-page/fonts/Inter-ExtraLightItalic.woff2 b/github-page/fonts/Inter-ExtraLightItalic.woff2 new file mode 100644 index 0000000..db6880b Binary files /dev/null and b/github-page/fonts/Inter-ExtraLightItalic.woff2 differ diff --git a/github-page/fonts/Inter-Italic.woff b/github-page/fonts/Inter-Italic.woff new file mode 100644 index 0000000..e7da666 Binary files /dev/null and b/github-page/fonts/Inter-Italic.woff differ diff --git a/github-page/fonts/Inter-Italic.woff2 b/github-page/fonts/Inter-Italic.woff2 new file mode 100644 index 0000000..8559dfd Binary files /dev/null and b/github-page/fonts/Inter-Italic.woff2 differ diff --git a/github-page/fonts/Inter-Light.woff b/github-page/fonts/Inter-Light.woff new file mode 100644 index 0000000..108c112 Binary files /dev/null and b/github-page/fonts/Inter-Light.woff differ diff --git a/github-page/fonts/Inter-Light.woff2 b/github-page/fonts/Inter-Light.woff2 new file mode 100644 index 0000000..80378a3 Binary files /dev/null and b/github-page/fonts/Inter-Light.woff2 differ diff --git a/github-page/fonts/Inter-LightItalic.woff b/github-page/fonts/Inter-LightItalic.woff new file mode 100644 index 0000000..b30452a Binary files /dev/null and b/github-page/fonts/Inter-LightItalic.woff differ diff --git a/github-page/fonts/Inter-LightItalic.woff2 b/github-page/fonts/Inter-LightItalic.woff2 new file mode 100644 index 0000000..091ff4e Binary files /dev/null and b/github-page/fonts/Inter-LightItalic.woff2 differ diff --git a/github-page/fonts/Inter-Medium.woff b/github-page/fonts/Inter-Medium.woff new file mode 100644 index 0000000..8c36a63 Binary files /dev/null and b/github-page/fonts/Inter-Medium.woff differ diff --git a/github-page/fonts/Inter-Medium.woff2 b/github-page/fonts/Inter-Medium.woff2 new file mode 100644 index 0000000..3b31d33 Binary files /dev/null and b/github-page/fonts/Inter-Medium.woff2 differ diff --git a/github-page/fonts/Inter-MediumItalic.woff b/github-page/fonts/Inter-MediumItalic.woff new file mode 100644 index 0000000..fb79e91 Binary files /dev/null and b/github-page/fonts/Inter-MediumItalic.woff differ diff --git a/github-page/fonts/Inter-MediumItalic.woff2 b/github-page/fonts/Inter-MediumItalic.woff2 new file mode 100644 index 0000000..d32c111 Binary files /dev/null and b/github-page/fonts/Inter-MediumItalic.woff2 differ diff --git a/github-page/fonts/Inter-Regular.woff b/github-page/fonts/Inter-Regular.woff new file mode 100644 index 0000000..7d587c4 Binary files /dev/null and b/github-page/fonts/Inter-Regular.woff differ diff --git a/github-page/fonts/Inter-Regular.woff2 b/github-page/fonts/Inter-Regular.woff2 new file mode 100644 index 0000000..d5ffd2a Binary files /dev/null and b/github-page/fonts/Inter-Regular.woff2 differ diff --git a/github-page/fonts/Inter-SemiBold.woff b/github-page/fonts/Inter-SemiBold.woff new file mode 100644 index 0000000..99df06c Binary files /dev/null and b/github-page/fonts/Inter-SemiBold.woff differ diff --git a/github-page/fonts/Inter-SemiBold.woff2 b/github-page/fonts/Inter-SemiBold.woff2 new file mode 100644 index 0000000..df746af Binary files /dev/null and b/github-page/fonts/Inter-SemiBold.woff2 differ diff --git a/github-page/fonts/Inter-SemiBoldItalic.woff b/github-page/fonts/Inter-SemiBoldItalic.woff new file mode 100644 index 0000000..91e192b Binary files /dev/null and b/github-page/fonts/Inter-SemiBoldItalic.woff differ diff --git a/github-page/fonts/Inter-SemiBoldItalic.woff2 b/github-page/fonts/Inter-SemiBoldItalic.woff2 new file mode 100644 index 0000000..ff8774c Binary files /dev/null and b/github-page/fonts/Inter-SemiBoldItalic.woff2 differ diff --git a/github-page/fonts/Inter-Thin.woff b/github-page/fonts/Inter-Thin.woff new file mode 100644 index 0000000..9d2e3e5 Binary files /dev/null and b/github-page/fonts/Inter-Thin.woff differ diff --git a/github-page/fonts/Inter-Thin.woff2 b/github-page/fonts/Inter-Thin.woff2 new file mode 100644 index 0000000..5f7bc37 Binary files /dev/null and b/github-page/fonts/Inter-Thin.woff2 differ diff --git a/github-page/fonts/Inter-ThinItalic.woff b/github-page/fonts/Inter-ThinItalic.woff new file mode 100644 index 0000000..885d8d5 Binary files /dev/null and b/github-page/fonts/Inter-ThinItalic.woff differ diff --git a/github-page/fonts/Inter-ThinItalic.woff2 b/github-page/fonts/Inter-ThinItalic.woff2 new file mode 100644 index 0000000..2ceec60 Binary files /dev/null and b/github-page/fonts/Inter-ThinItalic.woff2 differ diff --git a/github-page/fonts/Inter-italic.var.woff2 b/github-page/fonts/Inter-italic.var.woff2 new file mode 100644 index 0000000..50599d5 Binary files /dev/null and b/github-page/fonts/Inter-italic.var.woff2 differ diff --git a/github-page/fonts/Inter-roman.var.woff2 b/github-page/fonts/Inter-roman.var.woff2 new file mode 100644 index 0000000..a01437d Binary files /dev/null and b/github-page/fonts/Inter-roman.var.woff2 differ diff --git a/github-page/fonts/Inter.var.woff2 b/github-page/fonts/Inter.var.woff2 new file mode 100644 index 0000000..c746cfc Binary files /dev/null and b/github-page/fonts/Inter.var.woff2 differ diff --git a/github-page/fonts/inter.css b/github-page/fonts/inter.css new file mode 100644 index 0000000..a308182 --- /dev/null +++ b/github-page/fonts/inter.css @@ -0,0 +1,200 @@ +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 100; + font-display: swap; + src: url("Inter-Thin.woff2?v=3.13") format("woff2"), + url("Inter-Thin.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 100; + font-display: swap; + src: url("Inter-ThinItalic.woff2?v=3.13") format("woff2"), + url("Inter-ThinItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 200; + font-display: swap; + src: url("Inter-ExtraLight.woff2?v=3.13") format("woff2"), + url("Inter-ExtraLight.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 200; + font-display: swap; + src: url("Inter-ExtraLightItalic.woff2?v=3.13") format("woff2"), + url("Inter-ExtraLightItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url("Inter-Light.woff2?v=3.13") format("woff2"), + url("Inter-Light.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 300; + font-display: swap; + src: url("Inter-LightItalic.woff2?v=3.13") format("woff2"), + url("Inter-LightItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url("Inter-Regular.woff2?v=3.13") format("woff2"), + url("Inter-Regular.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 400; + font-display: swap; + src: url("Inter-Italic.woff2?v=3.13") format("woff2"), + url("Inter-Italic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 500; + font-display: swap; + src: url("Inter-Medium.woff2?v=3.13") format("woff2"), + url("Inter-Medium.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 500; + font-display: swap; + src: url("Inter-MediumItalic.woff2?v=3.13") format("woff2"), + url("Inter-MediumItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url("Inter-SemiBold.woff2?v=3.13") format("woff2"), + url("Inter-SemiBold.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 600; + font-display: swap; + src: url("Inter-SemiBoldItalic.woff2?v=3.13") format("woff2"), + url("Inter-SemiBoldItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url("Inter-Bold.woff2?v=3.13") format("woff2"), + url("Inter-Bold.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 700; + font-display: swap; + src: url("Inter-BoldItalic.woff2?v=3.13") format("woff2"), + url("Inter-BoldItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 800; + font-display: swap; + src: url("Inter-ExtraBold.woff2?v=3.13") format("woff2"), + url("Inter-ExtraBold.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 800; + font-display: swap; + src: url("Inter-ExtraBoldItalic.woff2?v=3.13") format("woff2"), + url("Inter-ExtraBoldItalic.woff?v=3.13") format("woff"); +} + +@font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 900; + font-display: swap; + src: url("Inter-Black.woff2?v=3.13") format("woff2"), + url("Inter-Black.woff?v=3.13") format("woff"); +} +@font-face { + font-family: 'Inter'; + font-style: italic; + font-weight: 900; + font-display: swap; + src: url("Inter-BlackItalic.woff2?v=3.13") format("woff2"), + url("Inter-BlackItalic.woff?v=3.13") format("woff"); +} + +/* ------------------------------------------------------- +Variable font. +Usage: + + html { font-family: 'Inter', sans-serif; } + @supports (font-variation-settings: normal) { + html { font-family: 'Inter var', sans-serif; } + } +*/ +@font-face { + font-family: 'Inter var'; + font-weight: 100 900; + font-display: swap; + font-style: normal; + font-named-instance: 'Regular'; + src: url("Inter-roman.var.woff2?v=3.13") format("woff2"); +} +@font-face { + font-family: 'Inter var'; + font-weight: 100 900; + font-display: swap; + font-style: italic; + font-named-instance: 'Italic'; + src: url("Inter-italic.var.woff2?v=3.13") format("woff2"); +} + + +/* -------------------------------------------------------------------------- +[EXPERIMENTAL] Multi-axis, single variable font. + +Slant axis is not yet widely supported (as of February 2019) and thus this +multi-axis single variable font is opt-in rather than the default. + +When using this, you will probably need to set font-variation-settings +explicitly, e.g. + + * { font-variation-settings: "slnt" 0deg } + .italic { font-variation-settings: "slnt" 10deg } + +*/ +@font-face { + font-family: 'Inter var experimental'; + font-weight: 100 900; + font-display: swap; + font-style: oblique 0deg 10deg; + src: url("Inter.var.woff2?v=3.13") format("woff2"); +} diff --git a/github-page/imgs/lite.png b/github-page/imgs/lite.png new file mode 100644 index 0000000..7c183e8 Binary files /dev/null and b/github-page/imgs/lite.png differ diff --git a/github-page/imgs/rxi.png b/github-page/imgs/rxi.png new file mode 100644 index 0000000..7687ad6 Binary files /dev/null and b/github-page/imgs/rxi.png differ diff --git a/github-page/index.html b/github-page/index.html new file mode 100644 index 0000000..29d6399 --- /dev/null +++ b/github-page/index.html @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + +
+

lite

+ +

+ lite + is a lightweight text editor written mostly in + lua +

+ +
+ +
Get Lite
+
Windows and Linux
+
+ + +
Source Code
+
On Github
+
+
+
+ +
+

overview

+ +

+ lite is a lightweight text editor written mostly in lua. it aims to provide something practical, pretty, small and fast, implemented as simply as possible; easy to modify and extend, or to use without doing either. +

+ +
+ lite is a lightweight text editor written mostly in Lua +
+
+ +
+

customization

+ +

+ Additional functionality can be added through plugins which are available + from the plugins repository; additional color themes can be found in the + colors repository. + The editor can be customized by making changes to the + user module. +

+ + +
+ + + +