diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..9bfc5cc --- /dev/null +++ b/css/style.css @@ -0,0 +1,93 @@ +body { + font-family: Arial, sans-serif; + background-color: #f8f8f8; + margin: 0; + padding: 0; +} + +.header { + background-color: #800040; + color: #ffffff; + padding: 20px; + text-align: center; + font-size: 2em; +} + +.nav { + display: flex; + justify-content: center; + background-color: #d40054; + padding: 10px; +} + +.nav img { + width: 50px; + height: 50px; + margin: 0 20px; + cursor: pointer; +} + +.main-content { + display: flex; + justify-content: center; + align-items: center; + padding: 40px; + background-color: #fff1f4; +} + +.form-container { + text-align: center; + padding: 20px; + background-color: #ffffff; + border-radius: 8px; + box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); + width: 300px; +} + +.form-container h2 { + color: #6b8e23; + font-size: 1.5em; +} + +.form-container label { + display: block; + margin: 10px 0 5px; + color: #333; +} + +.form-container input[type="text"] { + width: 100%; + padding: 8px; + margin-bottom: 10px; + border: 1px solid #ccc; + border-radius: 4px; +} + +.form-container input[type="submit"] { + background-color: #800040; + color: white; + padding: 10px; + border: none; + border-radius: 4px; + cursor: pointer; + width: 100%; +} + +.footer { + background-color: #800040; + color: white; + text-align: center; + padding: 10px; + position: fixed; + bottom: 0; + width: 100%; +} + +.car-image { + margin-left: 30px; +} + +.car-image img { + width: 150px; +} + diff --git a/imgs/home.png b/imgs/home.png new file mode 100644 index 0000000..297c4c7 Binary files /dev/null and b/imgs/home.png differ diff --git a/imgs/samochod.jpg b/imgs/samochod.jpg new file mode 100644 index 0000000..bb89dfc Binary files /dev/null and b/imgs/samochod.jpg differ diff --git a/imgs/znak.png b/imgs/znak.png new file mode 100644 index 0000000..fbe4dac Binary files /dev/null and b/imgs/znak.png differ diff --git a/index.html b/index.html index b0715c7..d52ae20 100644 --- a/index.html +++ b/index.html @@ -12,8 +12,8 @@