This commit is contained in:
Andy Tudhope 2018-09-28 21:31:20 +02:00
parent d9c9ff0559
commit 6b09719c31
No known key found for this signature in database
GPG Key ID: 02A3DFA93BF26AD2
20 changed files with 22 additions and 119 deletions

View File

@ -1 +1 @@
docs.status.im
nimbus.status.im

View File

@ -1,28 +0,0 @@
- name: Embark Vortex Template
description: A React Application showing what can be done with Vortex when using Embark.
link: https://github.com/Horyus/vortex-demo-embark/
tags:
- react
- name: Solidity Gas Golfing Contest Template
description: Boilerplate and tests for the first Solidity Gas Golfing Contest
link: https://github.com/embark-framework/sggc
tags:
- solidity
- tests
- fun
- name: Vyper Template
description: Template to demonstrate the use of the Vyper contracts
link: https://github.com/embark-framework/embark-vyper-template
tags:
- vyper
- contracts
- name: Bamboo Template
description: Template to demonstrate use of the Bamboo contracts
link: https://github.com/embark-framework/embark-bamboo-template
tags:
- bamboo
- contracts

View File

@ -1,26 +0,0 @@
- name: PFS
description: Perfect Forward Secrecy and Group Chats
link: https://github.com/status-im/status-react/pull/5646
thumbnail: secrecy.jpg
tags:
- security
- key exchange
- privacy
- secrecy
- communication
- chat
- name: Mail Servers
description: Cryptoeconomics and Whisper Messages, oh my!
link: https://github.com/status-im/ideas/tree/master/ideas/280-discoverable-trusted-server-nodes
thumbnail: mail.jpg
tags:
- chat
- NFTs
- collectibles
- name: Add back an option to run LES on Ropsten
description: Make the Light Ethereum Service great again and let us run it on our phones!
link: https://github.com/status-im/status-react/pull/6007
thumbnail: light_client.jpg
tags:
- light client
- decentralization

View File

@ -1,9 +0,0 @@
title: Chat
layout: chat
---
<p>
Join us at <a href="https://gitter.im/embark-framework/Lobby">gitter.im/embark-framework/Lobby</a>
</p>
<iframe src="https://gitter.im/embark-framework/Lobby/~embed" style="width: 100%; height: 800px; border: 1px solid black"></iframe>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,3 +1,3 @@
title: Status Docs
title: Nimbus
layout: index
---

View File

@ -1,6 +0,0 @@
layout: templates
title: Templates
data: templates
partial: template
comments: false
---

View File

@ -1,6 +0,0 @@
layout: wip
title: WIP Features
data: wip
partial: wip
comments: false
---

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -1,10 +1,8 @@
menu:
docs: Docs
news: News
plugins: Plugins
themes: Themes
search: Search
chat: Chat
blog: Blog
tutorials: Tutorials

View File

@ -2,7 +2,8 @@
<div class="header">
<div class="header-left">
<div class="logo-wrap">
<a class="logo" href="/"></a>
<span class="logo-span"><a class="logo" href="/"></a></span>
<span class="logo-span"><a class="logo-text" href="/">nimbus</a></span>
</div>
<ul class="main-nav">

View File

@ -1,9 +0,0 @@
<li class="plugin on">
<a href="{{ template.link }}" class="plugin-name" target="_blank">{{ template.name }}</a>
<p class="plugin-desc">{{ template.description }}</p>
<div class="plugin-tag-list">
{% for tag in template.tags %}
<a href="#{{ tag }}" class="plugin-tag">{{ tag }}</a>
{% endfor %}
</div>
</li>

View File

@ -1,10 +0,0 @@
<li class="plugin on">
<img src="/wip/thumbnails/{{ wip.thumbnail }}" style="display: block; width: 200px; height: 200px; margin-bottom: 20px;" />
<a href="{{ wip.link }}" class="plugin-name" target="_blank">{{ wip.name }}</a>
<p class="plugin-desc">{{ wip.description }}</p>
<div class="plugin-tag-list">
{% for tag in wip.tags %}
<a href="#{{ tag }}" class="plugin-tag">{{ tag }}</a>
{% endfor %}
</div>
</li>

View File

@ -1,14 +0,0 @@
<div id="content-wrap">
<div class="wrapper">
<div class="inner">
<header id="plugin-list-header">
<h1 id="plugin-list-title">{{ page.title }}</h1>
</header>
<ul id="plugin-list">
{% for wip in site.data[page.data] %}
{{ partial('partial/' + page.partial, {wip: wip}) }}
{% endfor %}
</ul>
</div>
</div>
</div>

View File

@ -201,25 +201,37 @@ select[multiple] {
.logo-wrap {
display: block;
width: 116px;
width: 160px;
height: 26px;
position: relative;
}
.logo-span {
float: left;
margin-left: 10px;
}
.logo {
display: block;
width: 40px;
height: 40px;
background-image: url(../img/status_logo.svg);
width: 56px;
height: 56px;
background-image: url(../img/logo_ogn.png);
text-decoration: none;
margin: -4px 0 0 30px;
background-color: rgba(0,0,0,0.1);
margin: -12px 0 0 -20px;
background-color: #ffffff;
border-radius: 50%;
background-size: 22px;
background-position: center;
background-repeat: no-repeat;
}
.logo-text {
font-size: 27px;
font-weight: bold;
color: #ffffff;
text-decoration: none;
}
.logo-sign {
display: block;
position: absolute;

Binary file not shown.

After

Width:  |  Height:  |  Size: 497 B