Initial commit from Gomix.
This commit is contained in:
parent
17976f47c9
commit
b344f20ff0
8 changed files with 300 additions and 2 deletions
64
public/style.css
Normal file
64
public/style.css
Normal file
|
@ -0,0 +1,64 @@
|
|||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family:sans-serif;
|
||||
margin: 25px;
|
||||
color: #222;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-weight: bold;
|
||||
|
||||
}
|
||||
|
||||
.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
p {
|
||||
max-width: 900px;
|
||||
}
|
||||
|
||||
form {
|
||||
margin-bottom: 25px;
|
||||
padding: 15px;
|
||||
background-color: #87D37C;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
max-width: 340px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
input {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
padding: 5px;
|
||||
width: 100%;
|
||||
border: 1px solid lightgrey;
|
||||
border-radius: 3px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
font-size: 16px;
|
||||
border-radius: 3px;
|
||||
background-color: #E4F1FE;
|
||||
border: 1px solid grey;
|
||||
box-shadow: 2px 2px #999;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=submit]:hover {
|
||||
background-color: #FFFEC4;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace;
|
||||
font-size: 1.2em;
|
||||
background-color: #FFFEC4;
|
||||
padding: 2px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue