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