mirror of
https://github.com/Noratrieb/hugos-lieblingsflugzeuge.git
synced 2026-01-16 12:45:12 +01:00
nav
This commit is contained in:
parent
a68c668a04
commit
9443cbd1b3
18 changed files with 223 additions and 114 deletions
30
src/app.css
Normal file
30
src/app.css
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
background-color: #282c34;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#parent {
|
||||
display: grid;
|
||||
grid-template-rows: 150px auto;
|
||||
grid-template-areas: "header"
|
||||
"main";
|
||||
}
|
||||
|
||||
main {
|
||||
grid-area: main;
|
||||
}
|
||||
|
||||
.model {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.model img {
|
||||
height: 200px;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue