Clockwork SMS
by surfine
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Clockwork SMS UI</title>
<meta name="theme-color" content="#2196F3">
<meta name="msapplication-TileColor" content="#2196F3">
<meta name="apple-mobile-web-app-status-bar-style" content="#2196F3">
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');
body {
background: #fff;
color: #444;
font-family: 'Roboto', sans-sarif;
font-weight: 300;
font-size: 14px;
}
h1 {
padding: 20px 0;
font-size: 36px;
font-weight: 300;
text-align: center;
}
form {
width: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input,
textarea {
width: 100%;
margin: 5px 0;
padding: 10px;
font-family: inherit;
font-size: inherit;
background: #f6f8fa;
border: 1px solid #eaeaea;
border-radius: 5px;
outline: none;
}
.button {
color: #fff;
font-weight: 500;
background: #2196F3;
border-radius: 5px;
}
</style>
</head>
<body>
<form action="" method="post">
<h1>Clockwork SMS</h1>
<input class="textbox" name="key" type="text" placeholder="API Key" required />
<input class="textbox" name="from" type="text" placeholder="From" required />
<input class="textbox" name="to" type="text" placeholder="To"...
CSS
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');
* {
box-sizing: border-box;
}
body {
background: #fff;
color: #444;
font-family: 'Roboto', sans-sarif;
font-weight: 300;
font-size: 14px;
}
h1 {
padding: 20px 0;
font-size: 36px;
font-weight: 300;
text-align: center;
}
form {
width: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input,
textarea {
width: 100%;
margin: 5px 0;
padding: 10px;
font-family: inherit;
font-size: inherit;
background: #f6f8fa;
border: 1px solid #eaeaea;
border-radius: 5px;
outline: none;
}
.button {
color: #fff;
font-weight: 500;
background: #2196F3;
border-radius: 5px;
display: block;
}