mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 21:17:58 +01:00
Update html/landing.ejs
This commit is contained in:
parent
7072ff9720
commit
ff60d4a316
1 changed files with 9 additions and 5 deletions
|
@ -48,7 +48,7 @@
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
|
||||||
#subtitle
|
.subtitle {
|
||||||
text-align: center
|
text-align: center
|
||||||
color: #FFFF00
|
color: #FFFF00
|
||||||
text-shadow: 1px 1px 0px #000
|
text-shadow: 1px 1px 0px #000
|
||||||
|
@ -58,19 +58,23 @@
|
||||||
animation: subtitle .25s
|
animation: subtitle .25s
|
||||||
animation-direction: alternate
|
animation-direction: alternate
|
||||||
animation-iteration-count: infinite
|
animation-iteration-count: infinite
|
||||||
|
}
|
||||||
|
|
||||||
@-webkit-keyframes subtitle
|
@-webkit-keyframes subtitle {
|
||||||
0%
|
0% {
|
||||||
transform: scale(0.875) rotate(-20deg)
|
transform: scale(0.875) rotate(-20deg)
|
||||||
100%
|
}
|
||||||
|
100% {
|
||||||
transform: scale(1) rotate(-20deg)
|
transform: scale(1) rotate(-20deg)
|
||||||
|
}
|
||||||
|
}
|
||||||
</style
|
</style
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<div class="header-content">
|
<div class="header-content">
|
||||||
<div class="header-content-start">
|
<div class="header-content-start">
|
||||||
<a href="/"><img style="width: 130px;" src="/css/logo-poke.svg?v=?v=<%=btoa(Date.now())%>"/><p id="subtitle"> <%- random %></p></a>
|
<a href="/"><img style="width: 130px;" src="/css/logo-poke.svg?v=?v=<%=btoa(Date.now())%>"/><p class="subtitle"> <%- random %></p></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="header-content-center" style="margin-left: -30px;">
|
<div class="header-content-center" style="margin-left: -30px;">
|
||||||
<form action=/search><input class=search-bar autocomplete="on" id=fname name=query><button class="btn btn-success" type=submit><i class="fa-light fa-search"></i></button></form>
|
<form action=/search><input class=search-bar autocomplete="on" id=fname name=query><button class="btn btn-success" type=submit><i class="fa-light fa-search"></i></button></form>
|
||||||
|
|
Loading…
Reference in a new issue