Some colors were changed

This commit is contained in:
Can Burak S 2021-10-23 05:43:44 +03:00
parent fbb6163cf8
commit 9f03477789
7 changed files with 4841 additions and 4976 deletions

View File

@ -26,7 +26,7 @@ const Graph = ({ el, graphdata, current }) => {
style: {
'width': 2,
"height":200,
'line-color': '#5221c4',
'line-color': '#ffffff',
'target-arrow-color': '#ccc',
'target-arrow-shape': 'triangle',
'curve-style': 'bezier'
@ -52,16 +52,16 @@ const Graph = ({ el, graphdata, current }) => {
//animateFilter: function ( node, i ){ return true; }, // a function that determines whether the node should be animated. All nodes animated by default on animate enabled. Non-animated nodes are positioned immediately when the layout starts
ready: undefined, // callback on layoutready
stop: undefined, // callback on layoutstop
transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts
transform: function (node, position ){ return position; } // transform a given node position. Useful for changing flow direction in discrete layouts
},
zoom: 10,
hideEdgesOnViewport:false,
wheelSensitivity:0.2,
})
cy.nodeHtmlLabel( [{
query: "node",
halign:"top",
@ -83,7 +83,7 @@ const Graph = ({ el, graphdata, current }) => {
export const Network = ({ el, graphdata, current, routeHandler, allNodes }) => {
var jsnx = require('jsnetworkx');
//const grouper = (id) => id === "index" ? 1 : (id === "codesheet" ? 2 : 3)
@ -112,14 +112,14 @@ export const Network = ({ el, graphdata, current, routeHandler, allNodes }) => {
else {
//console.log("else")
var indexnode = graphdata.filter(g => g.data.id === "index")[0]
indexnode = ["Home", {
indexnode = ["Home", {
width:30,
height:30,
weight:1,
href:`/`,
title: "Home",
fill:"blueviolet",
}]
var currentRawEdges = graphdata.filter(g => g.data.source === current)
@ -139,7 +139,7 @@ export const Network = ({ el, graphdata, current, routeHandler, allNodes }) => {
[
currentnode,
...othernodes,
],
],
{color: '#999999', width:40, height:40}
);
G.addEdgesFrom(edges);
@ -150,7 +150,7 @@ export const Network = ({ el, graphdata, current, routeHandler, allNodes }) => {
labelStyle:{
color:"#333",
fill:function(n){
return n.node === current ? "#fff" : "#000"
return n.node === current ? "#fff" : "#000"
}
},
labelAttr:{
@ -171,10 +171,10 @@ export const Network = ({ el, graphdata, current, routeHandler, allNodes }) => {
//charge:function(c){ return -80},
},
nodeStyle: {
fill: function(d) {
fill: function(d) {
return "#999"
//console.log("group", d.data.group)
//return color(d.data.group);
//return color(d.data.group);
},
stroke: 'none'
},
@ -197,4 +197,4 @@ export const Network = ({ el, graphdata, current, routeHandler, allNodes }) => {
return G
}
export default Graph;
export default Graph;

View File

@ -1,4 +1,4 @@
/*
/*
California Coast has been made possible by the work of:
@ -84,7 +84,7 @@ Disabled features */
Colors
Most colors in this theme are driven from the following values,
meaning that the backgrounds, borders, and various shades are
meaning that the backgrounds, borders, and various shades are
automatically generated for you.
- Base color is used for the backgrounds, text and borders.
@ -978,7 +978,7 @@ button,
.view-header-title:before {
display: none;
}
/*
/*
.empty-state-title,
.markdown-preview-view h1,
.HyperMD-header-1,

View File

@ -3,19 +3,26 @@ title: "Remote Tech Services like Web Design, E-commerce Setup and SEO"
description: "Here are the bookmark collections of me. It includes many travel links especially about Istanbul."
---
I help my clients better integrate with the digital by designing and [developing websites and e-commerce stores](https://webmeister.org). I make them earn more with search engine optimization and growth strategies.
I help my clients to earn more with search engine optimization and growth strategies. I also build beautiful websites and e-commerce stores for them.
This is my digital backroom. It is intended to be a personal public wiki page. I'll share my notes, codes, bookmarks and other links.
I help my clients to earn more with search engine optimization and growth strategies. I also build beautiful websites and e-commerce stores for them. I create solutions for globally known e-commerce platforms like Shopify and Wix as an official partner.
## Quicklinks
* __[[Articles (ENG)]]__: Articles written in English.
* __[[Codesheet]]__ : Code Snippets including Python, JS, CSS, HTML and Bash.
* __[[Articles (TR)]]__: Articles written in Turkish.
* * [[Sidekick Browser]]: Harikulade bir kullanıcı deneyimine sahip chromium tarayıcı.
* * [[TiddlyWiki]]: Çok işlevli bir not alma uygulaması olan Tiddlywiki hakkındaki incelemem.
* * [[Zettelkasten Metodu]]: Zettelkasten metodu ile akıllı notlar nasıl alınır?
* * [[Zettelkasten Uygulamaları]]: Zettelkasten metodunu kullanabileceğiniz not-alma uygulamaları.
* * [[Ghost Blog Açma Rehberi]]: GCP üzerinde Ghost blog nasıl açılır?
* * [[En İyi Blog Siteleri]]:Bir blog açmaya karar verdiniz ve henüz platform seçmediyseniz, bu yazıda nelere dikkat edilmesi gerektiğini ve çeşitli blog platformlarını bulacaksınız. Ücretsiz blog sitesi arayanlar, okuyucaları için paywall koymak isteyenler, portfolyo oluşturmak isteyenler için çeşitli alternatifler mevcut.
* * [[Clover Notes]]: Clover not alma uygulamasını beta-tester olarak deneyerek ilk izlenimlerimi paylaştım.
* * [[Obsidian]]: Obsidian not alma uygulaması hakkındaki tanıtım yazım.

View File

@ -2,7 +2,13 @@
title: "Sidebar"
---
### [Digital Notes](/)
[[Social Accounts]]
* [Home](/)
* [[Articles (TR)]]
* [[Articles (ENG)]]
* [[Codesheet]]

View File

@ -12,3 +12,6 @@ body {
box-sizing: border-box;
}
#sidebar {
padding-left: 16px;
}

View File

@ -1,8 +1,8 @@
body {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
color: #333;
font-size: 14px;
line-height: 20px;
line-height: 1.5rem;
font-size: 20px;
}
.body {
@ -55,7 +55,7 @@ ul, ol {padding-left: 16px;}
a {text-decoration: none;color:#333 !important}
a {text-decoration: none; color:#333 }
.main a.internal {
color: #131313 ;
background-color: transparent !important;
@ -75,7 +75,7 @@ a {text-decoration: none;color:#333 !important}
.main a:not(.internal, footer) {
color: #131313 ;
background-color: transparent !important;
background-image: linear-gradient(transparent 0%,transparent calc(50% - 9px),rgba(75, 58, 225, 0.631) calc(50% - 9px),rgba(0,255,0,0.35) 100%);
background-image: linear-gradient(transparent 0%,transparent calc(50% - 6px),rgba(75, 58, 225, 0.631) calc(50% - 4px),rgba(0,255,0,0.35) 100%);
background-position: 0px 0px;
background-size: 100% 200%;
font-weight: bold;
@ -94,26 +94,28 @@ a {text-decoration: none;color:#333 !important}
padding: 2px 4px;
transition: all 0.2s ease-out;
}
.test {
color: #5221c4;
}
#graph-box {
width: 100%;
margin-top: 32px;
margin-bottom:64px;
min-height:300px;
background-color: #FFCDDC;
background-color: #222831;
border-radius: 8px;
border:2px solid #FF9E80;
box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.0);
border:2px solid #2ba792;
box-shadow: 0 8px 16px 4px rgba(50, 224, 195, 0.247);
cursor: grab;
}
#graph-box:hover {
box-shadow: inset 4px 8px 16px 0px rgba(50, 224, 195, 0.247);
}
#side-graph-box {
width: 100%;
margin-top: 32px;
margin-bottom:64px;
/*
/*
min-height:250px;
*/
background-color: #29203d;
@ -125,9 +127,9 @@ a {text-decoration: none;color:#333 !important}
margin: 32px 0 !important;
}
.jsnx .node-node {fill: #5547d0 !important;}
.jsnx .node-node:hover {fill: blueviolet !important;}
.jsnx .node-label { fill: #333333 !important;font-size:12px; font-weight: bold;}
.jsnx .node-node {fill: #32E0C4 !important;}
.jsnx .node-node:hover {fill: #32E0C4 !important;}
.jsnx .node-label { fill: #fff !important;font-size:12px; font-weight: bold;}
.jsnx g.node {height:60px !important;}
.jsnx .nde-edge { fill:black; stroke-width:2; stroke:black; }
@ -139,10 +141,10 @@ img {width:100%; height:auto; margin-top:16px; margin-bottom:48px; border-radius
.sidebar h3,.sidebar h4 {margin-top:0px;padding-bottom: 16px; border-bottom: 2px solid rgba(0, 0, 0, 0.05);}
.sidebar ul {list-style: none;}
.sidebar li {font-weight: bold; font-size: 14px;}
.sidebar li:hover {background-color: #fff;}
.sidebar li a.internal {display:block; width: 100% !important;padding-left: 16px; padding-right: 16px;}
.sidebar li {font-weight: bold; font-size: 14px; transition: 0.3s all ease-out;}
.sidebar li:hover {background-color: #32E0C4; }
.sidebar li a {display:block; width: 100% !important;padding-left: 16px; padding-right: 16px;}
.sidebar#sidebar a {color: #EEEEEE !important}
main.main .main {max-width:800px;}
blockquote {
@ -205,8 +207,8 @@ blockquote {
-ms-flex-align: start;
align-items: flex-start;
border-right: 1px solid #999;
background-color: #ECEBEE;
color: #222;
background-color: #222831;
color: #EEEEEE !important;
}
.sidebar div { width: 100%; padding: 32px 0;}
@ -214,23 +216,23 @@ blockquote {
width: 100%;
padding:0;
}
.sidebar h3 {
padding-left: 16px;
padding-right: 16px;
}
.main {
position: relative;
left: 250px;
z-index: 0;
width: 100%;
max-width: 98%;
min-height: 100vh;
padding: 32px 1vw;
overflow-wrap: break-word;
background-color: #fcfcfc !important;
max-width: 88rem;
padding: 2rem;
margin: auto;
line-height: 1.5rem;
font-size: 20px;
}
main.parent-main {
display: flex;
flex-direction: column;
align-items: center;
}
main.parent-main {display: flex;flex-direction: column;align-items: center; }
.section {
position: relative;
@ -274,12 +276,14 @@ main.parent-main {display: flex;flex-direction: column;align-items: center; }
@media screen and (min-width: 767px) {
@media screen and (min-width: 767px) {
.sidebar {left: 0 !important;}
.main {width: calc(100% - 250px); padding-left: 4vw; padding-right: 4vw;}
.main {width: calc(100% - 250px); }
}
@media screen and (min-width: 991px) {
.parent-main {width: calc(100% - 250px); padding-left: 10vw !important; padding-right: 10vw;}
/*
*/
@media screen and (min-width: 991px) {
.parent-main {width: calc(100% - 250px); padding-left: 16vw !important; padding-right: 4vw;}
}
@media screen and (max-width: 767px) {
.sidebar {
@ -290,8 +294,9 @@ main.parent-main {display: flex;flex-direction: column;align-items: center; }
box-shadow: 3px 3px 8px -2px rgba(0, 0, 0, 0.3);
padding-top:96px;
}
/*
.parent-main {max-width: calc(100% - 32px);}
*/
.main {
left: 16px;
/*
@ -314,7 +319,7 @@ main.parent-main {display: flex;flex-direction: column;align-items: center; }
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-color: #ddd;
background-color: #EEEEEE;
color: #333;
}
@ -342,3 +347,34 @@ main.parent-main {display: flex;flex-direction: column;align-items: center; }
align-items: center;
}
}
.sidebar#sidebar a {
color: #ddd !important;
transition: all 0.3s ease-out;
}
.sidebar#sidebar a:hover {
color: #fff !important;
/*
color: #5221c4;
*/
}
body section {
background-color: #fcfcfc;
}
text.node-label {
fill:#fff !important;
}
#graph-box text {
color: #fff !important;
}
main.main {
font-size: 16px !important;
line-height: 1.5rem !important;
}
.sidebar#sidebar {
border-right: 4px solid #32E0C4;
box-shadow: 2px 0 8px 0 rgba(0, 0, 0, 0.3);
}

9633
yarn.lock

File diff suppressed because it is too large Load Diff