pyratestart

startpage
git clone git://git.pyratebeard.net/pyratestart.git
Log | Files | Refs | README

commit 973edf52fde829fce1e75b0bc9ac0483342c141e
parent 527e8dab5afb27dba3fd93f3e3bbcfd5793f1e1c
Author: pyratebeard <root@pyratebeard.net>
Date:   Sat,  7 Mar 2020 13:45:28 +0000

new startpage based on homepage style

Diffstat:
Aindex.html | 59+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Astatic/css/style.css | 111+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Astatic/fnt/saxmono-webfont.woff | 0
Astatic/img/rootimg.png | 0
4 files changed, 170 insertions(+), 0 deletions(-)

diff --git a/index.html b/index.html @@ -0,0 +1,59 @@ +<html> +<head> + <link href="./static/css/style.css" rel="stylesheet"> +</head> +<body> + <div class="container"> + <div class="section"> + <img src="./static/img/rootimg.png"/> + </div> + <div class="section"> + <header> + <h1>start &lt;dot&gt; pyratebeard &lt;dot&gt; net</h1> + </header> + <div id="search"> + <h2>search</h2> + <form action="https://duckduckgo.com/?q=" method="get" name="frmSearch"> + <input type="text" id="find" name="q" autofocus> + </form> + </div> + <div id="work"> + <h2>work</h2> + <ul> + <li><a href="https://orion.renre.com">monitoring</a> :</li> + <li><a href="https://renaissancere.atlassian.net/jira">tasks</a> :</li> + <li><a href="https://renaissancere.atlassian.net/wiki">wiki</a> :</li> + <li><a href="http://git.renre.com">code</a></li> + </ul> + </div> + <div id="pyratenet"> + <h2>pyratenet</h2> + <ul> + <li><a href="https://pyratebeard.net">site</a> :</li> + <li><a href="https://log.pyratebeard.net">log</a> :</li> + <li><a href="https://wiki.pyratebeard.net/">wiki</a> :</li> + <li><a href="http://git.pyratebeard.net">code</a> :</li> + <li><a href="ftp://ftp.pyratebeard.net">ftp</a></li> + </ul> + </div> + <div id="coffee_break"> + <h2>coffee break</h2> + <ul> + <li><a href="https://nixers.net">nixers</a> :</li> + <li><a href="https://news.ycombinator.com/">hacker news</a> :</li> + <li><a href="https://reddit.com/r/unixporn">r/unixporn</a> :</li> + <li><a href="https://reddit.com/r/comicbooks">r/comicbooks</a></li> + </ul> + </div> + <div id="connect"> + <h2>connect</h2> + <ul> + <li><a href="https://mastodon.social/auth/sign_in">mastodon</a> :</li> + <li><a href="https://twitter.com/login?hide_message=true&redirect_after_login=https%3A%2F%2Ftweetdeck.twitter.com%2F%3Fvia_twitter_login%3Dtrue">twitter</a> :</li> + <li><a href="https://keybase.io/pyratebeard">keybase</a></li> + </ul> + </div> + </div> + </div> +</body> +</html> diff --git a/static/css/style.css b/static/css/style.css @@ -0,0 +1,111 @@ +@font-face { + font-family: 'saxmono'; + src: url('../fnt/saxmono-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +body { + background-color: #202224; + color: #beced0; + font-family: "saxmono"; + font-size: 16px +} + +.container { + display: flex; + flex-wrap: wrap +} +.section { + margin: 20px; + max-width: 599px; +} +h1,h2,h3,h4,h5 { + text-transform: uppercase; + font-weight: normal; +} + +h1 { + color: #cd6e42 +} + +h2,h3,h4,h5 { + color: #646086 +} + +a { + color: #62a8b2; + text-decoration: none +} + +a:active,a:hover,a:focus { + color: #33708c +} + +ul { + list-style-type: none; + float: left; + width: 100%; + color: #cd6e42; + margin-top: 0px; + margin-bottom: 32px; +} +li { + width 100%; + background: #202224; + display: inline; + font-size: 16px; + color: #62a8b2; +} +li.header { + color: #646086; +} +li a { + color: #beced0; + font-weight: normal; + text-decoration: none; + font-size: 16px; +} +li a:hover, +li a:focus { + outline: none; + color: #33708c; +} +input[type=text]:focus { + outline: none; + border: none; + color: #dceef1; +} + +input[type=text] { + outline: none; + border: none; + background-color: #161719; + color: #dceef1; + width: 99%; + height: 50px; + padding: 5px 0px 5px 15px; + font-family: saxmono; + font-size: 14px; + text-align: left; + -webkit-transition: all 0.30s ease-in-out; +} +input#find { + border: solid 1px #76b660; + border-radius: 5px; + max-width: 100%; +} +::-webkit-scrollbar { + background: #161719; + border: 0; + border-radius: 0; +} +::-webkit-scrollbar-track { + background: #161719; + border: 0; + border-radius: 0; +} +::-webkit-scrollbar-thumb { + background: #161719; + border-radius: 0; +} diff --git a/static/fnt/saxmono-webfont.woff b/static/fnt/saxmono-webfont.woff Binary files differ. diff --git a/static/img/rootimg.png b/static/img/rootimg.png Binary files differ.