updated styles for list items, added additional class styling for a footer on pages with longer content
This commit is contained in:
parent
5bb7667d7d
commit
1abed22be6
1 changed files with 14 additions and 3 deletions
17
style.css
17
style.css
|
@ -22,10 +22,11 @@ body {
|
|||
justify-content: space-around;
|
||||
}
|
||||
|
||||
p {
|
||||
p, ul, li {
|
||||
padding: 0px;
|
||||
margin: 0.8em;
|
||||
font-size: 0.9em
|
||||
font-size: 0.9em;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
#linkblock {
|
||||
|
@ -62,10 +63,20 @@ hr {
|
|||
#footer {
|
||||
display: block;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
bottom: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
font-size: 0.8em;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#longcontentfooter {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
font-size: 0.8em;
|
||||
margin-top: 20px;
|
||||
width: 100%;
|
||||
}
|
Loading…
Reference in a new issue