{"id":21074573,"url":"https://github.com/shamikaredkar/art-gallery","last_synced_at":"2026-05-22T14:39:02.344Z","repository":{"id":234297229,"uuid":"788602339","full_name":"shamikaredkar/Art-Gallery","owner":"shamikaredkar","description":"This digital gallery features a curated selection of photos by artists like Massimo Marganoni, Giuseppe Milo, and Görlitz Photography, each presented in a sleek, responsive format that brings their work to life. Hover over images to discover the artists' names.","archived":false,"fork":false,"pushed_at":"2024-04-18T20:09:53.000Z","size":3978,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T22:39:04.376Z","etag":null,"topics":["css3","html5","interactive-ui","interactive-user-interface","photogallery","responsive-layout","responsive-web-design","webdev","webdevelopment"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shamikaredkar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-18T18:24:36.000Z","updated_at":"2024-04-22T19:16:13.000Z","dependencies_parsed_at":"2024-11-19T19:16:50.673Z","dependency_job_id":"76a8915c-1d44-4886-b625-163382edff1d","html_url":"https://github.com/shamikaredkar/Art-Gallery","commit_stats":null,"previous_names":["shamikaredkar/artgallery","shamikaredkar/art-gallery"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamikaredkar%2FArt-Gallery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamikaredkar%2FArt-Gallery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamikaredkar%2FArt-Gallery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamikaredkar%2FArt-Gallery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shamikaredkar","download_url":"https://codeload.github.com/shamikaredkar/Art-Gallery/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243517351,"owners_count":20303607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css3","html5","interactive-ui","interactive-user-interface","photogallery","responsive-layout","responsive-web-design","webdev","webdevelopment"],"created_at":"2024-11-19T19:16:48.232Z","updated_at":"2025-12-29T14:36:40.207Z","avatar_url":"https://github.com/shamikaredkar.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"![ArtGallery Demo](https://github.com/shamikaredkar/ArtGallery/blob/main/ArtGalleryPreview.gif)\n### Purpose:\n\nThis digital gallery features a curated selection of photos by artists like Massimo Marganoni, Giuseppe Milo, and Görlitz Photography, each presented in a sleek, responsive format that brings their work to life. Hover over images to discover the artists' names, enhancing your appreciation for the art and its creator.\n\n---\n\n### Features:\n\n\u003e Interactive overlays with artist names on hover.\n\u003e \n\n\u003e Responsive design for optimal viewing on multiple devices.\n\u003e \n\n\u003e Elegant and minimalistic design to highlight the photos.\n\u003e \n\n---\n\n### Technology Stack:\n\nHTML, CSS\n\n---\n\n### Directory Structure\n\n```lua\n/photo-blog\n|-- index.html\n|-- photos.css\n```\n\n---\n\n### Code Documentation:\n\n## HTML\n\n\u003c/aside\u003e\n\n**index.html —** Contains the entire page structure.\n\n- **`\u003cnav\u003e`**: This is used as the navigation or title area of the webpage.\n- **`\u003csection\u003e`**: Each section represents a different artist's gallery.\n- **`\u003cdiv class=\"image-container\"\u003e`**: This container holds each image along with an overlay for the artist's name.\n\n```html\n\u003csection class=\"artist1\"\u003e\n  \u003cdiv class=\"image-container\"\u003e\n    \u003cimg src=\"link_to_image\" alt=\"Description\"\u003e\n    \u003ch3\u003eArtist Name\u003c/h3\u003e\n  \u003c/div\u003e\n  \u003c!-- Additional image containers --\u003e\n\u003c/section\u003e\n```\n\n##CSS\n\u003c/aside\u003e\n\n**photos.css —** Styles the visual elements of the site.\n\n- **`.image-container`**: Styles the containers that hold the images and the overlay text.\n- **`nav`**: Styles for the navigation bar to ensure it is visually distinct.\n\n**Image Container (`image-container`)**\n\n```css\n.image-container {\n    position: relative;\n    width: 30%;\n    margin: calc(5%/6);\n    display: inline-block;\n}\n```\n\n- **Positioning**: Set to **`relative`** which allows absolute positioning of elements inside it, such as the artist's name (**`\u003ch3\u003e`**).\n- **Display**: **`inline-block`** allows multiple containers to sit in a line horizontally, given sufficient screen width.\n\n**Image and Hover Effects**\n\n```css\n.image-container img {\n    width: 100%;\n    opacity: 1;\n}\n\n.image-container:hover img{\n    border-color: black;\n    box-shadow: 1em 1em 1em -0.5em black;\n    transform: translateY(-1em);\n    opacity: 0.5;\n}\n```\n\n- **Width and Opacity**: The image fills its container (**`100%`** width), and is fully opaque until hovered.\n- **Hover Effects**: On hover, the image is dimmed (**`opacity: 0.5`**), lifted (**`translateY`**), and gains a shadow and border color, highlighting the image and making the text more readable.\n\n### Artist Name (**`h3`**)\n\n```css\n\n.image-container h3 {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translate(-50%, -50%);\n    text-align: center;\n    color: black;\n    opacity: 0;\n    transition: opacity 0.3s ease-in;\n    width: 100%;\n}\n```\n\n- **Positioning**: Positioned absolutely in the center of the **`image-container`** using percentages and the **`transform`** property. This central placement ensures the name appears over the middle of the image.\n- **Visibility**: Initially hidden (**`opacity: 0`**), it becomes visible (**`opacity: 1`**) when the image container is hovered over, due to the CSS rule in **`.image-container:hover h3`**.\n\n---\n\n### Specific Implementations\n\nCSS Details\n\n- **Image Hover Effect**: The use of **`opacity`** and **`transform`** properties in the **`.image-container:hover img`** selector creates a visual effect that slightly dims the image and moves it up, making the artist's name more prominent.\n\nChoice of Fonts\n\n- Raleway was chosen for its modern and professional look, which complements the artistic photos.\n\nLayout\n\n- A grid layout allows each image to be displayed prominently, making it easy for users to engage with individual pieces of art.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshamikaredkar%2Fart-gallery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshamikaredkar%2Fart-gallery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshamikaredkar%2Fart-gallery/lists"}