From a19a57eea3dc77f890e16b5134b53fc6f3fb3640 Mon Sep 17 00:00:00 2001 From: grinikita Date: Mon, 17 Mar 2025 22:21:52 +0300 Subject: [PATCH] init --- .gitignore | 1 + creators.html | 33 +++++++++++++++++++++++++++++ discover.html | 33 +++++++++++++++++++++++++++++ images/logo.svg | 5 +++++ index.html | 33 +++++++++++++++++++++++++++++ style.css | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 161 insertions(+) create mode 100644 .gitignore create mode 100644 creators.html create mode 100644 discover.html create mode 100644 images/logo.svg create mode 100644 index.html create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/creators.html b/creators.html new file mode 100644 index 0000000..7adf046 --- /dev/null +++ b/creators.html @@ -0,0 +1,33 @@ + + + + + + + Document + + + + + + + + +
+ + + +
+
+ Creators +
+ + \ No newline at end of file diff --git a/discover.html b/discover.html new file mode 100644 index 0000000..e6cd2cd --- /dev/null +++ b/discover.html @@ -0,0 +1,33 @@ + + + + + + + Document + + + + + + + + +
+ + + +
+
+ Discover +
+ + \ No newline at end of file diff --git a/images/logo.svg b/images/logo.svg new file mode 100644 index 0000000..9007f37 --- /dev/null +++ b/images/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..752e1b5 --- /dev/null +++ b/index.html @@ -0,0 +1,33 @@ + + + + + + + Document + + + + + + + + +
+ + + +
+
+ Home +
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..d95e6c2 --- /dev/null +++ b/style.css @@ -0,0 +1,56 @@ +html { + --color-dark: #141416; + --text-dark: var(--color-dark); + --text-light: #FFFFFF; + + --font-family: "Inter", sans-serif; + + font-family: var(--font-family); +} + +.container { + padding: 0 97px; +} + +.button { + padding: 16px 24px; + background-color: var(--color-dark); + border-radius: 16px; + color: var(--text-light); + font-weight: 600; + font-size: 16px; + line-height: 24px; + text-transform: uppercase; +} + +.header { + display: flex; + align-items: center; +} + +.logo { + margin-right: 57px; +} + +.header .button { + margin-left: auto; +} + +.nav-list { + list-style: none; + padding: 0; + margin: 0; + color: #606060; + font-weight: 500; + font-size: 18px; + line-height: 27px; + text-transform: uppercase; + + display: flex; + gap: 53px; +} + +.header a { + text-decoration: none; + color: inherit; +} \ No newline at end of file