Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
Arsen Mirzaev Tatyano-Muradovich | 924a4ecd27 |
|
@ -3,8 +3,7 @@
|
||||||
"description": "My personal site",
|
"description": "My personal site",
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"personal",
|
"personal site",
|
||||||
"site",
|
|
||||||
"blog",
|
"blog",
|
||||||
"articles",
|
"articles",
|
||||||
"videos",
|
"videos",
|
||||||
|
@ -38,7 +37,7 @@
|
||||||
"mirzaev/minimal": "^2.0.x-dev",
|
"mirzaev/minimal": "^2.0.x-dev",
|
||||||
"mirzaev/accounts": "~1.2.x-dev",
|
"mirzaev/accounts": "~1.2.x-dev",
|
||||||
"mirzaev/arangodb": "^1.0.0",
|
"mirzaev/arangodb": "^1.0.0",
|
||||||
"mirzaev/vk": "^5.0",
|
"mirzaev/vk": "^4.0",
|
||||||
"triagens/arangodb": "~3.9.x-dev",
|
"triagens/arangodb": "~3.9.x-dev",
|
||||||
"twig/twig": "^3.4",
|
"twig/twig": "^3.4",
|
||||||
"guzzlehttp/guzzle": "^7.5"
|
"guzzlehttp/guzzle": "^7.5"
|
||||||
|
|
|
@ -43,7 +43,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
section.graph {
|
section.graph {
|
||||||
z-index : 0;
|
|
||||||
width : 100vw;
|
width : 100vw;
|
||||||
height : 100vh;
|
height : 100vh;
|
||||||
position : absolute;
|
position : absolute;
|
||||||
|
@ -59,24 +58,24 @@ section.graph:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
section.graph article.node {
|
section.graph article.node {
|
||||||
z-index : 500;
|
z-index : 500;
|
||||||
position : absolute;
|
position : absolute;
|
||||||
display : flex;
|
display : flex;
|
||||||
cursor : grab;
|
cursor : grab;
|
||||||
border-radius : 100%;
|
border-radius : 100%;
|
||||||
background-color: var(--node-background);
|
background-color : var(--node-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
section.graph article.node.animated {
|
section.graph article.node.animated {
|
||||||
animation-duration : 0.1s;
|
animation-duration : 0.1s;
|
||||||
animation-name : node-select-revert;
|
animation-name : node-select-revert;
|
||||||
animation-fill-mode: forwards;
|
animation-fill-mode : forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
section.graph article.node.animated:hover {
|
section.graph article.node.animated:hover {
|
||||||
animation-duration : 0.1s;
|
animation-duration : 0.1s;
|
||||||
animation-name : node-select;
|
animation-name : node-select;
|
||||||
animation-fill-mode: forwards;
|
animation-fill-mode : forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
section.graph article.node:active {
|
section.graph article.node:active {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% block title %}
|
{% block title %}
|
||||||
<title>{% if head.title != empty %}{{head.title}}{% else %}Нейрожурнал Мирзаева{% endif %}</title>
|
<title>{% if head.title != empty %}{{head.title}}{% else %}Мирзаев{% endif %}</title>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block meta %}
|
{% block meta %}
|
||||||
|
|
Loading…
Reference in New Issue