Optimize templates & clean code
This commit is contained in:
parent
0c1c888547
commit
86d9ca5066
11 changed files with 98 additions and 48 deletions
|
@ -1,8 +1,10 @@
|
|||
body {
|
||||
font: 400 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font: 400 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
|
||||
.uk-navbar-item,
|
||||
.uk-navbar-nav>li>a,
|
||||
.uk-navbar-toggle {
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
|
@ -12,5 +14,27 @@ body {
|
|||
}
|
||||
|
||||
.uk-breadcrumb>:nth-child(n+2):not(.uk-first-column)::before {
|
||||
margin: 0 10px 0 calc(10px - 4px);
|
||||
margin: 0 10px 0 calc(10px - 4px);
|
||||
}
|
||||
|
||||
.uk-blur img {
|
||||
filter: blur(8px);
|
||||
transform: scale(1.05);
|
||||
transition: filter 0.5s ease, transform 0.5s ease;
|
||||
}
|
||||
|
||||
.fade-in {
|
||||
animation: fadeIn 0.8s ease forwards;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(1.02);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue