Try dark violet (?) background.

This commit is contained in:
Flancian 2021-01-30 19:31:16 +01:00
parent a1c750c08a
commit 242030049c
3 changed files with 19 additions and 9 deletions

View File

@ -47,7 +47,22 @@ nav { font-family: sans-serif}
content: "]]"
}
.node {
.subnode {
/* background: #351a4a; */
/* background: #2a153b; */
background: #12091a;
color: #cfcfcf;
padding: 0.5em;
margin-bottom: 10px;
border-radius: 10px;
}
.pulled-subnode {
background: #101010;
color: #cfcfcf;
padding: 0.5em;
margin-bottom: 10px;
border-radius: 10px;
}
.node-header {
@ -57,11 +72,6 @@ nav { font-family: sans-serif}
}
.subnode {
background: #101010;
color: #cfcfcf;
padding: 0.5em;
margin-bottom: 10px;
border-radius: 10px;
}
.not-found {

View File

@ -27,7 +27,7 @@
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/screen-dark.css')}}?uncached3" id="theme-link" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/screen-dark.css')}}?uncached4" id="theme-link" />
<script type=text/javascript src="{{url_for('static', filename='js/main.js')}}"></script>
<!-- considering this way of integrating hypothesis, although I like "standard" (sidebar) mode.
<script type="application/json" class="js-hypothesis-config">

View File

@ -46,7 +46,7 @@ You can try searching or listing <a href="/nodes">all nodes</a>.<br /><br />
{% if node.pushed_subnodes() %}
{% for subnode in node.pushed_subnodes() %}
<div class="subnode">
<div class="pulled-subnode">
<div class="subnode-header">
<span class="subnode-id"><strong>Subnode</strong> <a href="/@{{subnode.user}}/{{node.uri}}">[[@{{subnode.user}}/{{node.uri}}]]</a></span><br />
<span class="subnode-links"><strong>pushed from</strong> <a href="/subnode/{{subnode.uri}}">{{subnode.uri}}</a> by <a href="/@{{subnode.user}}">@{{subnode.user}}</a></span>
@ -64,7 +64,7 @@ You can try searching or listing <a href="/nodes">all nodes</a>.<br /><br />
<span class="node-header"><strong>Pulled node</strong> <a href="/node/{{node.uri}}">[[{{node.uri}}]]</a></span>
{% for subnode in node.subnodes %}
<div class="subnode">
<div class="pulled-subnode">
<div class="subnode-header">
<span class="subnode-id"><strong>Subnode</strong> <a href="/@{{subnode.user}}/{{node.uri}}">[[@{{subnode.user}}/{{node.uri}}]]</a></span><br />
<span class="subnode-links"><strong>from</strong> <a href="/raw/{{subnode.uri}}">{{subnode.uri}}</a> by <a href="/@{{subnode.user}}">@{{subnode.user}}</a></span>