urlshortener/public/style.css
2020-09-29 14:00:27 +09:00

70 lines
768 B
CSS

body {
font-family: Arial, sans-serif;
font-size: 16px;
color: #222;
background-color: #fff;
text-align: center;
line-height: 1.4em;
}
main {
padding: 0;
margin-top: 40px;
}
h3 {
margin-top: 30px;
}
.user-stories {
position: relative;
text-align: justify;
max-width: 700px;
margin: 15px auto;
}
code {
font-family: monospace;
padding: 2px;
background-color: #eeeef0;
}
ol {
list-style-position: inside;
}
ul {
list-style-type: none;
}
li {
margin-bottom: 0.5em;
}
.user-stories li {
margin-bottom: 1em;
}
a {
color: #2574a9;
}
form {
margin: 10px auto;
padding: 20px;
max-width: 600px;
}
label {
margin-right: 10px;
}
input {
padding: 5px;
}
input[type='text'] {
width: 220px;
text-align: center;
}