diff options
Diffstat (limited to 'artistes.css')
| -rw-r--r-- | artistes.css | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/artistes.css b/artistes.css index 2f33f7b..81006ac 100644 --- a/artistes.css +++ b/artistes.css @@ -1,17 +1,27 @@ +body { + height: 100vh; +} + .main { display: flex; + overflow: auto; + flex-grow: 1; } .main div { padding: 2%; } -#photos { - width: 30%; - flex-shrink: 0; +.main #photos { + flex: 1; background: #eee; } +.main #bio { + flex: 2; + background: #bbb; +} + #photos img { width: 40%; border-color: #ddd; @@ -25,7 +35,3 @@ #photos img:hover { filter: none; } - -#bio { - background: #bbb; -} |
