From 0bb1395a5adce246c08eb1d3f8ba704d4cc63322 Mon Sep 17 00:00:00 2001 From: XGQT Date: Sun, 2 Feb 2020 21:55:48 +0100 Subject: [PATCH] add bling --- public/assets/css/main.css | 138 ++++++++++++++++++++++++ public/devs.html | 171 ++++++++++++++++++++++++++++++ public/index.html | 147 ++++++++++++++++++++++++-- public/packages.html | 39 +++++++ public/shoutouts.html | 211 +++++++++++++++++++++++++++++++++++++ public/style.css | 12 --- public/why.html | 172 ++++++++++++++++++++++++++++++ 7 files changed, 870 insertions(+), 20 deletions(-) create mode 100644 public/assets/css/main.css create mode 100644 public/devs.html create mode 100644 public/packages.html create mode 100644 public/shoutouts.html delete mode 100644 public/style.css create mode 100644 public/why.html diff --git a/public/assets/css/main.css b/public/assets/css/main.css new file mode 100644 index 0000000..cf23989 --- /dev/null +++ b/public/assets/css/main.css @@ -0,0 +1,138 @@ +/* + ___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___ + / __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \ + \__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/ + |___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___| + |_____|_| |_| +*/ + + +/* General */ + +* { + background-repeat: no-repeat; +} + +html, +body { + height: 100%; + margin: 0; + padding: 0; + width: 100%; +} + +body { + font-family: Arial, Helvetica, sans-serif; +} + + +/* Menu */ + +#top { + background-color: rgba(51, 51, 51, 1); + height: 6%; + overflow: hidden; +} + +#top ul { + list-style-type: none; + margin: 0; + overflow: hidden; + padding: 0.5%; +} + +#top li { + float: left; +} + +#top li a { + color: rgba(255, 255, 255, 1); + display: block; + height: 100%; + padding: 14px 16px; + text-align: center; + text-decoration: none; +} + +#top li a:hover { + background-color: rgba(1, 1, 1, 1); +} + + +/* Logo */ + +#src_prepare, #src, #prepare { + background-color: RGBA(88, 86, 86, 1); + margin: 0; + padding: 0; + text-align: center; +} + +#src_prepare { + height: 30%; +} + +#src { + font-size: 1000%; +} + +#prepare { + font-size: 3vw; +} + + +/* About */ + +#about { + background-color: rgba(43, 40, 40, 1); + color: rgba(153, 156, 150, 1) ; + height: 60%; + padding: 1% 5% 1% 5%; +} + +#about a { + text-decoration: none; +} + +#about a:link { + color: rgba(42, 161, 152, 1); +} + +#about a:visited { + color: rgba(133, 153, 0, 1); +} + + +/* Footer */ + +footer { + background-color: rgba(0, 0, 0, 1); + color: rgba(255, 255, 255, 1); + font-size: 1.1vh; + height: 20%; + padding: 1% 5% 1% 5%; + text-align: center; +} + + +.fcol { + float: left; + height: 50%; + text-align: center; + width: 33%; +} + +.fcol ul { + list-style-type: none; +} +.fcol a { + text-decoration: none; +} + +.fcol a:link { + color: rgba(42, 161, 152, 1); +} + +.fcol a:visited { + color: rgba(133, 153, 0, 1); +} diff --git a/public/devs.html b/public/devs.html new file mode 100644 index 0000000..e4c9bfc --- /dev/null +++ b/public/devs.html @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + Developers (src_prepare) + + + + + + + + + + +
+ + + +
+ + +
+ +

SRC

+

prepare

+ +
+ + +
+ +

+ Developers +

+ + + +
+ + + + + + + + + diff --git a/public/index.html b/public/index.html index c5537ae..341455f 100644 --- a/public/index.html +++ b/public/index.html @@ -1,28 +1,159 @@ + + + - - + + - - + + - src_prepare + Home (src_prepare) - - + + -

Test

+ +
+ + + +
+ + +
+ +

SRC

+

prepare

+ +
+ + +
+ +

+ About Us +

+ +

+ The src_prepare group is a community of developers who happen to use the Gentoo GNU/Linux + operating system. +

+

+ We focus on making our developement fun, comfortable and reproducible. +

+

+ The name comes from a ebuild function called "src_prepare". +

+

+ Check out our projects on Gitlab +

+

+ Join our community on Telegram +

+ +
+ + + + diff --git a/public/packages.html b/public/packages.html new file mode 100644 index 0000000..d532254 --- /dev/null +++ b/public/packages.html @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + Packages (src_prepare) + + + + + + + + + + Working on this... + + + + + diff --git a/public/shoutouts.html b/public/shoutouts.html new file mode 100644 index 0000000..1690b4d --- /dev/null +++ b/public/shoutouts.html @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + Shoutouts (src_prepare) + + + + + + + + + + +
+ + + +
+ + +
+ +

SRC

+

prepare

+ +
+ + +
+ +

+ Shoutouts to: +

+ + + +
+ + + + + + + + + diff --git a/public/style.css b/public/style.css deleted file mode 100644 index 6f0f679..0000000 --- a/public/style.css +++ /dev/null @@ -1,12 +0,0 @@ -* { - background-repeat: no-repeat; - overflow: hidden; -} - -html, -body { - height: 100%; - margin: 0; - padding: 0; - width: 100%; -} diff --git a/public/why.html b/public/why.html new file mode 100644 index 0000000..381f56d --- /dev/null +++ b/public/why.html @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + Why (src_prepare) + + + + + + + + + + +
+ + + +
+ + +
+ +

SRC

+

prepare

+ +
+ +
+ +

+ Why use Gentoo? +

+ + + +
+ + + + + + + + +