redesign
This commit is contained in:
parent
c1d8b96f49
commit
ed5756d065
|
@ -5,7 +5,7 @@
|
||||||
left : 130%;
|
left : 130%;
|
||||||
bottom : -200%;
|
bottom : -200%;
|
||||||
width : 120px;
|
width : 120px;
|
||||||
opacity: 1;
|
opacity: 0.7;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,11 +26,7 @@ section#authentication>section.header {
|
||||||
display : flex;
|
display : flex;
|
||||||
clip-path : url(#authentication-header-mask);
|
clip-path : url(#authentication-header-mask);
|
||||||
border-radius : 3px 3px 0 0;
|
border-radius : 3px 3px 0 0;
|
||||||
animation-duration : 120s;
|
animation-duration: 120s;
|
||||||
animation-name : background;
|
|
||||||
animation-iteration-count: infinite;
|
|
||||||
background-repeat : no-repeat;
|
|
||||||
animation-timing-function: ease-in-out;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
section#authentication>section.header>img.avatar {
|
section#authentication>section.header>img.avatar {
|
||||||
|
@ -60,6 +56,20 @@ section#authentication>section.header>img.avatar:hover {
|
||||||
-moz-box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
|
-moz-box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
section#authentication>section.header>img.cover {
|
||||||
|
z-index : -5000;
|
||||||
|
left : -50px;
|
||||||
|
top : 0;
|
||||||
|
position : absolute;
|
||||||
|
width : calc(100% + 100px);
|
||||||
|
height : 100%;
|
||||||
|
object-position: 0px 30%;
|
||||||
|
object-fit : cover;
|
||||||
|
clip-path : polygon(50px 0, calc(100% - 50px) 0, calc(100% - 50px) 100%, 50px 100%);
|
||||||
|
border-radius : 0 0 3px 3px;
|
||||||
|
background : var(--background-above);
|
||||||
|
}
|
||||||
|
|
||||||
section#authentication>section.header>div.glare {
|
section#authentication>section.header>div.glare {
|
||||||
z-index : 3000;
|
z-index : 3000;
|
||||||
left : -30px;
|
left : -30px;
|
||||||
|
@ -83,7 +93,7 @@ section#authentication>section.header>div {
|
||||||
animation-duration: 80s;
|
animation-duration: 80s;
|
||||||
}
|
}
|
||||||
|
|
||||||
section#authentication>section.header>h3 {
|
section#authentication>section.header>a {
|
||||||
margin : auto;
|
margin : auto;
|
||||||
width : 100%;
|
width : 100%;
|
||||||
margin-left : 110px;
|
margin-left : 110px;
|
||||||
|
@ -92,10 +102,12 @@ section#authentication>section.header>h3 {
|
||||||
overflow-x : hidden;
|
overflow-x : hidden;
|
||||||
text-overflow : ellipsis;
|
text-overflow : ellipsis;
|
||||||
font-size : 1.3em;
|
font-size : 1.3em;
|
||||||
|
font-weight : bold;
|
||||||
color : var(--text-inverse);
|
color : var(--text-inverse);
|
||||||
text-shadow : 0 0 8px #00000080;
|
text-shadow : 0 0 8px #00000080;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
section#authentication>section.body {
|
section#authentication>section.body {
|
||||||
margin-top : -160px;
|
margin-top : -160px;
|
||||||
padding : 180px 30px 20px 30px;
|
padding : 180px 30px 20px 30px;
|
||||||
|
@ -104,17 +116,12 @@ section#authentication>section.body {
|
||||||
flex-direction : column;
|
flex-direction : column;
|
||||||
border-radius : 3px;
|
border-radius : 3px;
|
||||||
background-color : var(--background-above);
|
background-color : var(--background-above);
|
||||||
|
/* background-image : radial-gradient(circle at 70% 20%, #000000A0 0%, var(--background-above) 75%); */
|
||||||
box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
|
box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
|
||||||
-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
|
-webkit-box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
|
||||||
-moz-box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
|
-moz-box-shadow : 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
section#authentication>section.body>a {
|
|
||||||
margin-left: 5%;
|
|
||||||
font-size : 1.2em;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
section#authentication>section.body>ul {
|
section#authentication>section.body>ul {
|
||||||
margin : unset;
|
margin : unset;
|
||||||
margin-left : 10%;
|
margin-left : 10%;
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
top : -230%;
|
top : -230%;
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
100% {
|
||||||
left: -250%;
|
left: -250%;
|
||||||
top : -300%;
|
top : -300%;
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
top : -300%;
|
top : -300%;
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
100% {
|
||||||
left: -280%;
|
left: -280%;
|
||||||
top : -80%;
|
top : -80%;
|
||||||
}
|
}
|
||||||
|
@ -58,17 +58,13 @@
|
||||||
top : -80%;
|
top : -80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
100% {
|
||||||
left: -180%;
|
left: -180%;
|
||||||
top : -100%;
|
top : -100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes wrap-background {
|
@keyframes wrap-background {
|
||||||
from {
|
|
||||||
background-color: #ff5c5c;
|
|
||||||
}
|
|
||||||
|
|
||||||
25% {
|
25% {
|
||||||
background-color: #9395ff;
|
background-color: #9395ff;
|
||||||
}
|
}
|
||||||
|
@ -81,7 +77,7 @@
|
||||||
background-color: #534eff;
|
background-color: #534eff;
|
||||||
}
|
}
|
||||||
|
|
||||||
to {
|
100% {
|
||||||
background-color: #ff5c5c;
|
background-color: #ff5c5c;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -94,6 +90,7 @@
|
||||||
animation-iteration-count: infinite;
|
animation-iteration-count: infinite;
|
||||||
background-repeat : no-repeat;
|
background-repeat : no-repeat;
|
||||||
animation-timing-function: ease-in-out;
|
animation-timing-function: ease-in-out;
|
||||||
|
background-color : #ff5c5c;
|
||||||
}
|
}
|
||||||
|
|
||||||
:is(div, section).gradient>div:not(.gradient) {
|
:is(div, section).gradient>div:not(.gradient) {
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.5 MiB |
|
@ -11,16 +11,16 @@
|
||||||
{{ vk.mail }}
|
{{ vk.mail }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<section class="header gradient">
|
<section class="header gradient unselectable">
|
||||||
<div class="glare"></div>
|
<div class="glare"></div>
|
||||||
<img class="avatar" src="/images/what.png" alt="Пользователь">
|
<img class="avatar unselectable" src="/images/what.png" alt="Пользователь" draggable="false">
|
||||||
<h3>Арсен Мирзаев</h3>
|
<a href="https://mirzaev.sexy">Нейрожурнал Мирзаева</a>
|
||||||
<div class="red"></div>
|
<div class="red"></div>
|
||||||
<div class="green"></div>
|
<div class="green"></div>
|
||||||
<div class="blue"></div>
|
<div class="blue"></div>
|
||||||
|
<img class="cover unselectable" src="/images/heh.gif" alt="Нейрожурнал Мирзаева" draggable="false"></img>
|
||||||
</section>
|
</section>
|
||||||
<section class="body">
|
<section class="body">
|
||||||
<a href="https://mirzaev.sexy">https://mirzaev.sexy</a>
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Подпункт 2.1.</li>
|
<li>Подпункт 2.1.</li>
|
||||||
<li>Подпункт 2.2.
|
<li>Подпункт 2.2.
|
||||||
|
|
|
@ -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