fix slight width inconsistencies
This commit is contained in:
parent
edc5e33774
commit
2ffb75b4aa
25
styles.css
25
styles.css
|
@ -6,36 +6,33 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
place-content: center;
|
||||
}
|
||||
|
||||
dd-header {
|
||||
margin: 5px;
|
||||
width: 80ch;
|
||||
max-width: 100%;
|
||||
box-shadow: 5px 5px 5px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
dd-footer {
|
||||
margin: 5px;
|
||||
width: 80ch;
|
||||
max-width: 100%;
|
||||
box-shadow: 5px 5px 5px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
header {
|
||||
margin: 5px;
|
||||
height: 110px;
|
||||
flex: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-shadow: 5px 5px 5px;
|
||||
}
|
||||
|
||||
footer {
|
||||
border: 3px black solid;
|
||||
background: turquoise;
|
||||
margin: 5px;
|
||||
text-align: center;
|
||||
box-shadow: 5px 5px 5px;
|
||||
}
|
||||
|
||||
footer ul {
|
||||
|
@ -103,10 +100,6 @@ nav ul li + li::before {
|
|||
content: " | ";
|
||||
}
|
||||
|
||||
main {
|
||||
flex: auto;
|
||||
}
|
||||
|
||||
aside {
|
||||
background: turquoise;
|
||||
border: 3px black solid;
|
||||
|
|
Loading…
Reference in New Issue