72 lines
1.3 KiB
HTML
72 lines
1.3 KiB
HTML
{{ define "slimheader" }}
|
|
<head>
|
|
<title>Short: the simple url shortener</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css?family=Abril+Fatface|Lato');
|
|
|
|
body {
|
|
background: #D3DEEA;
|
|
}
|
|
|
|
form{
|
|
position:fixed;
|
|
top:32%;
|
|
left:35%;
|
|
width:500px;
|
|
font-family:georgia,garamond,serif;
|
|
font-size:16px;
|
|
|
|
}
|
|
.bottom {
|
|
position:fixed;
|
|
top:30%;
|
|
left:35%;
|
|
width:500px;
|
|
}
|
|
|
|
p {
|
|
text-align: center;
|
|
font-family: 'Lato', sans-serif;
|
|
color: #585959;
|
|
font-size: .6em;
|
|
margin-top: -20px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.search {
|
|
text-align: center;
|
|
}
|
|
|
|
.search-bar {
|
|
border: 1px solid #BFC0C0;
|
|
padding: 5px;
|
|
height: 20px;
|
|
margin-left: -30px;
|
|
width: 200px;
|
|
outline: none;
|
|
&:focus {
|
|
border: 1px solid #D3DEEA;
|
|
}
|
|
}
|
|
|
|
.search-btn {
|
|
position: absolute;
|
|
width: 30px;
|
|
height: 32px;
|
|
border: 1px solid #BFC0C0;
|
|
background: #BFC0C0;
|
|
text-align: center;
|
|
color: #EDEDED;
|
|
cursor: pointer;
|
|
font-size: 1em;
|
|
outline: none;
|
|
&:hover {
|
|
background: #EDEDED;
|
|
border: 1px solid #EDEDED;
|
|
color: #BFC0C0;
|
|
transition: all .2s ease;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
{{ end }} |