commit 0ab281e96dd10c5c3698a539acf1e5a50adb7911 Author: Nazar Date: Thu Sep 11 14:15:40 2025 +0300 Initial commit. Color scheme. Navbar. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1db88a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +**/.DS_Store +*.zip \ No newline at end of file diff --git a/images/website-logo.png b/images/website-logo.png new file mode 100644 index 0000000..176f5f4 Binary files /dev/null and b/images/website-logo.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..f515a08 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ + + + + + + Головна » Веб-програмування ПР№1 + + + + + + + + + + \ No newline at end of file diff --git a/pages/about.html b/pages/about.html new file mode 100644 index 0000000..4ff9841 --- /dev/null +++ b/pages/about.html @@ -0,0 +1,21 @@ + + + + + + Про нас » Веб-програмування ПР№1 + + + + + + + \ No newline at end of file diff --git a/pages/articles.html b/pages/articles.html new file mode 100644 index 0000000..7c899c4 --- /dev/null +++ b/pages/articles.html @@ -0,0 +1,21 @@ + + + + + + Статті » Веб-програмування ПР№1 + + + + + + + \ No newline at end of file diff --git a/pages/contacts.html b/pages/contacts.html new file mode 100644 index 0000000..1359a54 --- /dev/null +++ b/pages/contacts.html @@ -0,0 +1,21 @@ + + + + + + Контакти » Веб-програмування ПР№1 + + + + + + + \ No newline at end of file diff --git a/pages/gallery.html b/pages/gallery.html new file mode 100644 index 0000000..9b0aa7f --- /dev/null +++ b/pages/gallery.html @@ -0,0 +1,21 @@ + + + + + + Галерея » Веб-програмування ПР№1 + + + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..6ec990c --- /dev/null +++ b/style.css @@ -0,0 +1,58 @@ +* { + box-sizing: border-box; +} + +:root { + --background: #070F2B; + --primary: #9290C3; + --secondary: #535C91; + --highlight: #1B1A55; +} + +body { + background-color: var(--background); + color: var(--primary); + margin: 0; + font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; +} + +/* Navbar */ + +nav { + /* display: flex; */ + /* flex-direction: row; */ + border-radius: 1rem; + background-color: var(--highlight); + margin: 1rem; + padding: 0.5rem; +} + +.nav-links { + display: flex; + justify-content: center; + align-items: center; +} + +.nav-links > a { + border-radius: 0.75rem; + padding: 0.25rem 0.5rem; + color: var(--primarxy); + text-decoration: none; + font-size: large; +} + +.nav-links > a:hover { + background-color: var(--secondary); +} + +.nav-links:last-child { + padding-right: 0.75rem; +} + +.nav-logo { + margin-right: auto; +} + +.nav-logo > img { + height: 2.5rem; +} \ No newline at end of file