71 lines
1.6 KiB
Plaintext
71 lines
1.6 KiB
Plaintext
<html>
|
|
<head>
|
|
<title><%= @page_title || "URL Shortener" %></title>
|
|
<link rel="icon" href="data:,">
|
|
<style>
|
|
input[type=url] {
|
|
padding: 1rem;
|
|
border-radius: 5px;
|
|
border: 2px solid #99b1ff;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
input[type=url]:focus, input[type=url]:hover, input[type=url]:active {
|
|
border: 2px solid #809DFF;
|
|
}
|
|
|
|
button {
|
|
padding: 1rem;
|
|
border-radius: 5px;
|
|
border: 2px solid #99b1ff;
|
|
background: #e6ecff;
|
|
font-weight: bold;
|
|
transition: all .25s ease-in-out;
|
|
-moz-transition: all .25s ease-in-out;
|
|
-webkit-transition: all .25s ease-in-out;
|
|
}
|
|
|
|
button:hover {
|
|
border: 2px solid #809DFF;
|
|
background: #CCD8FF;
|
|
}
|
|
|
|
button:active {
|
|
background: #809DFF;
|
|
color: #FEFEFE;
|
|
}
|
|
|
|
a {
|
|
color: #809DFF;
|
|
transition: all .25s ease-in-out;
|
|
-moz-transition: all .25s ease-in-out;
|
|
-webkit-transition: all .25s ease-in-out;
|
|
}
|
|
|
|
a:hover, a:active, a:focus {
|
|
color: #555;
|
|
}
|
|
main {
|
|
max-width: 30rem;
|
|
min-width: 18rem;
|
|
border: 5px solid #B3C6FF;
|
|
border-radius: 20px;
|
|
margin: auto;
|
|
padding: 1rem;
|
|
margin-top: 5rem;
|
|
text-align: center;
|
|
min-height: 175px;
|
|
box-shadow: 3px 2px 10px #333;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body style="background: #FEFEFE; font-family: Helvetica, sans-serif; color: #555555;">
|
|
<main>
|
|
<h1>URL Shortener</h1>
|
|
<h4 id="message"><%== @message %></h4>
|
|
<%== yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|