mirror of
https://codeberg.org/buzzcode2007/FCC-Project-URLShortener.git
synced 2025-05-21 03:06:34 +00:00
Initial commit from Gomix.
This commit is contained in:
parent
fa420da4d3
commit
13dd4b6376
7 changed files with 269 additions and 2 deletions
74
public/style.css
Normal file
74
public/style.css
Normal file
|
@ -0,0 +1,74 @@
|
|||
/****** Main Styling ******/
|
||||
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-size: 16px;
|
||||
color: #222;
|
||||
background-color: #FaFaFa;
|
||||
text-align: center;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 0;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.user-stories {
|
||||
position: relative;
|
||||
text-align: justify;
|
||||
max-width: 700px;
|
||||
margin: 15px auto;
|
||||
}
|
||||
code {
|
||||
font-family: monospace;
|
||||
padding: 2px;
|
||||
color: black;
|
||||
background-color: #fff;
|
||||
}
|
||||
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 {
|
||||
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] {
|
||||
width: 220px;
|
||||
text-align: center;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue