From d2c0f070807fab9247479825a530e829ec1657d1 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sat, 17 Oct 2020 23:41:12 +0200 Subject: POC artist page --- artistes.css | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 artistes.css (limited to 'artistes.css') diff --git a/artistes.css b/artistes.css new file mode 100644 index 0000000..c69b323 --- /dev/null +++ b/artistes.css @@ -0,0 +1,61 @@ +body { + background: #eee; + display: flex; + padding-left: 10%; + padding-right: 10%; +} + +body div { + padding: 2em; +} + +#photos { + width: 30%; + background: #fd4; +} + +#photos-inner { + position: fixed; + height: 100% +} + +#photos-inner img { + height: 33%; + border-color: #ddd; + border-width: 10px; + border-style: solid; + border-radius: 20%; +} + +#vlad { + position: absolute; + left: 2em; + top: 5%; + z-index: 1; +} + +#garet { + position: absolute; + left: 10em; + top: 10%; + z-index: 2; +} + +#ivan { + position: absolute; + left: 2em; + top: 30%; + z-index: 3; +} + +#sofia { + position: absolute; + left: 10em; + top: 35%; + z-index: 4; +} + +#bio { + width: 45%; + background: #fee; +} -- cgit v1.2.3