{"id":24482248,"url":"https://github.com/ozzies-code/businesscard.","last_synced_at":"2025-03-14T19:22:47.528Z","repository":{"id":183097422,"uuid":"669595049","full_name":"ozzies-code/Businesscard.","owner":"ozzies-code","description":"This project was made using HTML5.0 and CSS3.0. This project consists of a two-sided business card. The developer is shown on the front and the developer's name and a small interaction with each of the social networks is shown on the back.","archived":false,"fork":false,"pushed_at":"2023-07-22T19:51:15.000Z","size":312,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-21T12:13:09.331Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","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/ozzies-code.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}},"created_at":"2023-07-22T19:41:56.000Z","updated_at":"2023-07-22T19:53:22.000Z","dependencies_parsed_at":"2023-07-22T20:42:41.900Z","dependency_job_id":null,"html_url":"https://github.com/ozzies-code/Businesscard.","commit_stats":null,"previous_names":["ozzies-code/businesscard."],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FBusinesscard.","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FBusinesscard./tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FBusinesscard./releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ozzies-code%2FBusinesscard./manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ozzies-code","download_url":"https://codeload.github.com/ozzies-code/Businesscard./tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243633025,"owners_count":20322519,"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":[],"created_at":"2025-01-21T12:13:12.184Z","updated_at":"2025-03-14T19:22:47.506Z","avatar_url":"https://github.com/ozzies-code.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Businesscard.\nThis project was made using HTML5.0 and CSS3.0. This project consists of a two-sided business card. The developer is shown on the front and the developer's name and a small interaction with each of the social networks is shown on the back.\n\nHTML:\n\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003ctitle\u003eMi Tarjeta de Presentación\u003c/title\u003e\n    \u003clink rel=\"stylesheet\" href=\"mitarjetapresentacion.css\"\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css\"\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n    \u003cdiv class=\"card\"\u003e\n        \u003cdiv class=\"card-front\"\u003e\u003c/div\u003e\n        \u003cdiv class=\"card-back\"\u003e\n            \u003ch2\u003eOswaldo Jesús Marín Pagés\u003cbr\u003e\u003cspan\u003eWeb Dev\u003c/span\u003e\u003c/h2\u003e\n            \u003cdiv class=\"social-icons\"\u003e\n                \u003ca href=\"#\" class=\"fa fa-facebook\" aria-hidden=\"true\"\u003e\u003c/a\u003e\n                \u003ca href=\"#\" class=\"fa fa-twitter\" aria-hidden=\"true\"\u003e\u003c/a\u003e\n                \u003ca href=\"#\" class=\"fa fa-google-plus\" aria-hidden=\"true\"\u003e\u003c/a\u003e\n                \u003ca href=\"#\" class=\"fa fa-linkedin\" aria-hidden=\"true\"\u003e\u003c/a\u003e\n                \u003ca href=\"#\" class=\"fa fa-instagram\" aria-hidden=\"true\"\u003e\u003c/a\u003e\n            \u003c/div\u003e\n        \u003c/div\u003e\n    \u003c/div\u003e  \n\u003c/body\u003e\n\n\u003c/html\u003e\n\nCSS:\n\n@import \"https://fonts.googleapis.com/css?family=Josefin+Sans:400,700\";\nbody {\n  margin: 0;\n  padding: 0;\n  font-family: \"Josefin Sans\", sans-serif;\n  background-color: #000;\n  color: #fff;\n}\n\nbody a {\n  color: orange;\n  text-decoration: none;\n}\n\n.card {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  height: 400px;\n  width: 300px;\n  transform: translate(-50%, -50%);\n  transform-style: preserve-3d;\n  perspective: 600px;\n  transition: 0.5s;\n}\n\n.card:hover .card-front {\n  transform: rotateX(-180deg);\n}\n.card:hover .card-back {\n  transform: rotateX(0deg);\n}\n\n.card-front {\n  height: 100%;\n  width: 100%;\n  background-image: url(img/A7Rm2gSV_400x400.jpg);\n  background-position: 50% 50%;\n  background-size: cover;\n  position: absolute;\n  top: 0;\n  left: 0;\n  background-color: blue;\n  backface-visibility: hidden;\n  transform: rotateX(0deg);\n  transition: 0.5s;\n}\n\n.card-back {\n  height: 100%;\n  width: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n  background-color: darkblue;\n  backface-visibility: hidden;\n  transform: rotateX(180deg);\n  transition: 0.5s;\n  color: #ffffff;\n  text-align: center;\n}\n\n.card-back h2 {\n  margin: 60% auto 35% auto;\n  font-size: 26px;\n}\n.card-back h2 span {\n  font-size: 20px;\n}\n.card-back a {\n  height: 20px;\n  width: 20px;\n  padding: 5px 5px;\n  border-radius: 4px;\n  line-height: 20px;\n}\n.card-back a:hover {\n  color: blue;\n  background-color: #000;\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzies-code%2Fbusinesscard.","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fozzies-code%2Fbusinesscard.","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fozzies-code%2Fbusinesscard./lists"}