Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.0 KiB
117 lines
2.0 KiB
1 year ago
|
/*
|
||
|
// Copyright (c) 2022-2023 Niko Bonnieure, Par le Peuple, NextGraph.org developers
|
||
|
// All rights reserved.
|
||
|
// Licensed under the Apache License, Version 2.0
|
||
|
// <LICENSE-APACHE2 or http://www.apache.org/licenses/LICENSE-2.0>
|
||
|
// or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
|
||
|
// at your option. All files in the project carrying such
|
||
|
// notice may not be copied, modified, or distributed except
|
||
|
// according to those terms.
|
||
|
*/
|
||
|
|
||
1 year ago
|
:root {
|
||
|
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
|
||
|
font-size: 16px;
|
||
|
line-height: 24px;
|
||
|
font-weight: 400;
|
||
|
|
||
|
color: #0f0f0f;
|
||
|
background-color: #f6f6f6;
|
||
|
|
||
|
font-synthesis: none;
|
||
|
text-rendering: optimizeLegibility;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
}
|
||
|
|
||
1 year ago
|
.container2 {
|
||
1 year ago
|
margin: 0;
|
||
1 year ago
|
min-width: 280px;
|
||
1 year ago
|
padding-top: 10vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
padding: 1.5em;
|
||
|
will-change: filter;
|
||
|
transition: 0.75s;
|
||
|
}
|
||
|
|
||
|
.row {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
font-weight: 500;
|
||
|
color: #646cff;
|
||
|
text-decoration: inherit;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #535bf2;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
button {
|
||
|
border-radius: 8px;
|
||
|
border: 1px solid transparent;
|
||
|
padding: 0.6em 1.2em;
|
||
|
font-size: 1em;
|
||
|
font-weight: 500;
|
||
|
font-family: inherit;
|
||
|
color: #0f0f0f;
|
||
|
background-color: #ffffff;
|
||
|
transition: border-color 0.25s;
|
||
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
border-color: #396cd8;
|
||
|
}
|
||
|
button:active {
|
||
|
border-color: #396cd8;
|
||
|
background-color: #e8e8e8;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
button {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
#greet-input {
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
:root {
|
||
|
color: #f6f6f6;
|
||
|
background-color: #2f2f2f;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #24c8db;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
button {
|
||
|
color: #ffffff;
|
||
|
background-color: #0f0f0f98;
|
||
|
}
|
||
|
button:active {
|
||
|
background-color: #0f0f0f69;
|
||
|
}
|
||
|
}
|