From 531a303dc12b22de9e37cecbf8db472f782cf288 Mon Sep 17 00:00:00 2001 From: Tomer Polat Date: Wed, 8 Feb 2023 01:05:46 +0200 Subject: [PATCH] tomer polat cv --- tomerPolat/index.html | 27 +++++++++++++++++++++++ tomerPolat/style.css | 51 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 tomerPolat/index.html create mode 100644 tomerPolat/style.css diff --git a/tomerPolat/index.html b/tomerPolat/index.html new file mode 100644 index 0000000..a1c0a50 --- /dev/null +++ b/tomerPolat/index.html @@ -0,0 +1,27 @@ + + + + + + + + Tomer_Polat + + + +
+
+

I am Tomer Polat

+

Go to my LinkedIn + Profile +

+
+
+ Tomer Polat Linkedin Profile Pic +
+
+ + + + \ No newline at end of file diff --git a/tomerPolat/style.css b/tomerPolat/style.css new file mode 100644 index 0000000..0df64f5 --- /dev/null +++ b/tomerPolat/style.css @@ -0,0 +1,51 @@ +* { + list-style-type: none; + padding: 0; + margin: 0; +} + +body { + font-family: 'Lato', 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', 'sans-serif'; + background-color: #283F50; + color: white; + height: 100vh; +} + +.profile_picture img { + width: 80%; + border-radius: 10%; + margin-top: 5.625em; +} + +a { + color: aliceblue; +} + +a:hover { + background-color: #fff; + color: #283F50 +} + +header { + padding: 30px; + display: flex; + align-items: center; + justify-content: center; +} + +.intro { + padding: 20px; + min-width: 300px; +} + +@media (max-width: 512px) { + header { + padding: 10px; + flex-direction: column; + } + + header .intro { + padding: 30px 0; + min-width: unset; + } +} \ No newline at end of file