Skip to content

Commit

Permalink
issue: #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Melina Lanvermann committed Dec 4, 2023
1 parent ea48034 commit efc5666
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
html{
html {
font-family: Arial, sans-serif;
font-size: larger;
}

.parking-list{
.parking-list {
display: flex;
flex-flow: column wrap;
flex-basis: auto;
align-content: center;
}
.parking-list a{

.parking-list a {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
Expand All @@ -21,18 +22,22 @@ html{
padding: 5px;
margin-bottom: 2px;
}
.parking-list span{

.parking-list span {
flex-basis: 25%
}
.free{

.free {
background-color: #97cf66ff;
border-color: #214600ff;
}
.booked{

.booked {
background-color: #f4aa66ff;
border-color: #5e2d00ff;
}
.unknown{

.unknown {
background-color: #e36666ff;
border-color: #270000ff;
}

0 comments on commit efc5666

Please sign in to comment.