{"id":21029504,"url":"https://github.com/lostsh/gameretro","last_synced_at":"2026-05-14T21:33:23.235Z","repository":{"id":138697422,"uuid":"221204067","full_name":"lostsh/gameretro","owner":"lostsh","description":"Retro gaming area, (website for flex css test)","archived":false,"fork":false,"pushed_at":"2019-11-12T14:11:05.000Z","size":1599,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-12T13:29:55.967Z","etag":null,"topics":["css3","html-css","html-css-javascript","html5","website"],"latest_commit_sha":null,"homepage":"https://lostsh.github.io/gameretro/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lostsh.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2019-11-12T11:40:58.000Z","updated_at":"2022-12-03T04:13:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"3a351d57-6ef4-4e41-86ab-f7053a14cb33","html_url":"https://github.com/lostsh/gameretro","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lostsh/gameretro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostsh%2Fgameretro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostsh%2Fgameretro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostsh%2Fgameretro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostsh%2Fgameretro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lostsh","download_url":"https://codeload.github.com/lostsh/gameretro/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostsh%2Fgameretro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33044137,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","html-css","html-css-javascript","html5","website"],"created_at":"2024-11-19T12:12:56.050Z","updated_at":"2026-05-14T21:33:23.219Z","avatar_url":"https://github.com/lostsh.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GAMERetro\n\nLe fichier [fonts.css](assets/css/fonts.css) contiend les importations des polices du dossier [fonts](assets/fonts).\n\nLe fichier [index.css](assets/css/index.css) contiend les régles de style.\n\nCe fichier est composé de trois grandes parties :\n1. en-tête\n2. le corp\n   1. le Tchat principal\n   2. l'Info-bulle\n3. le pied de page\n\n\n\n\n\n- index.css ligne 103 on trouve le `clip-path` qui me permet de faire une forme de bulle de sms pour le Tchat, que je trouve joli, et qui m'a permis de mieux comprendre comment fonctionnait le `polygon()` de `clip-path`.\n```html\n\u003carticle\u003e\n  \u003cdiv id=\"titreContainer\"\u003e\n    \u003cdiv id=\"sms\"\u003e\u003c/div\u003e\n    \u003ch2\u003eTchat\u003c/h2\u003e\n  \u003c/div\u003e\n  \u003ciframe src=\"https://gameretro.alwaysdata.net\"\u003e\u003c/iframe\u003e\n\u003c/article\u003e\n```\n```css\n#sms{\n    background-color: red;\n    width: 30px;\n    height: 30px;\n    clip-path: polygon(0 0,100% 0,100% 50%,30% 50%,10% 70%,10% 50%,0 50%);\n}\n```\n\n- index.html ligne 30 on trouve une balise `\u003cmarquee\u003e\u003c/marquee\u003e` qui est une balise dépréciée. Mais elle est cool.\n- index.html ligne 39 le tchat est en fait une `\u003ciframe\u003e` d'un site que j'ai hébergé spécialement pour l'occasion. Vous pouvez aller voir [juste ici](https://gameretro.alwaysdata.net).\n- index.css ligne [173](https://github.com/lostsh/gameretro/blob/79516f614a8f61f4d7ed9e2a4c1d451f4d445700/assets/css/index.css#L173) a [189](https://github.com/lostsh/gameretro/blob/79516f614a8f61f4d7ed9e2a4c1d451f4d445700/assets/css/index.css#L189) on peut voir le positionnement des images :\n```css\n#mes_photo table, table tr, table tr td figure{\n    margin: 0;\n    padding: 0;\n}\n#mes_photo table tr:nth-child(1) td figure img{\n    width: 100%;\n}\n#mes_photo table tr:nth-child(2) td figure img{\n    height: 7em;\n}\n#Bpacman, #Bspace{\n    float: right;\n}\n#Bgalaga, #Bcentiped{\n    float: left;\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flostsh%2Fgameretro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flostsh%2Fgameretro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flostsh%2Fgameretro/lists"}