urlshortener/public/style.css

76 lines
856 B
CSS
Raw Normal View History

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