Website redesign
|
|
@ -1 +1,23 @@
|
|||
.vscode
|
||||
node_modules
|
||||
|
||||
# Output
|
||||
.output
|
||||
.vercel
|
||||
.netlify
|
||||
.wrangler
|
||||
/.svelte-kit
|
||||
/build
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Env
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
!.env.test
|
||||
|
||||
# Vite
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 280 KiB |
|
Before Width: | Height: | Size: 12 MiB |
|
Before Width: | Height: | Size: 325 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 216 KiB |
|
Before Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 2.9 MiB |
|
Before Width: | Height: | Size: 431 KiB |
83
index.html
|
|
@ -1,83 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Napredne rešitve za dom in podjetja">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>InteliDom d.o.o.</title>
|
||||
<link rel="icon" href="images/intelidom_logo_3.png" type="image/icon type">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
|
||||
<div id="header_background_fade"></div>
|
||||
|
||||
<div id="logo">
|
||||
<img src="images/intelidom_logo_2.png"> </img>
|
||||
</div>
|
||||
|
||||
<div id="contact">
|
||||
|
||||
<a id="contact_email" href="mailto:info@intelidom.si">
|
||||
<img src="images/mail_icon.png" alt=""></img>
|
||||
<p>info@intelidom.si</p>
|
||||
</a>
|
||||
|
||||
<a id="contact_tel" href="tel:+386 40 771 166">
|
||||
<img src="images/tel_icon.png" alt=""></img>
|
||||
<p>040 77 11 66</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="main">
|
||||
<div class="service">
|
||||
<h2>pametne inštalacije</h2>
|
||||
<div class="service_content">
|
||||
<ul>
|
||||
<li>Inštalacija in zagon <a href="https://www.loxone.com/int/">Loxone</a> sistema za pametno hišo</li>
|
||||
<li>Montaža in zagon domofonskih sistemov</li>
|
||||
<li>Odpiranje vrat na pin kodo ali kartico</li>
|
||||
</ul>
|
||||
<img src="images/pametne_instalacije_slika.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="service">
|
||||
<h2>telekomunikacije</h2>
|
||||
<div class="service_content">
|
||||
<img src="images/telekomunikacije_slika.png" alt="">
|
||||
<ul>
|
||||
<li>Napeljava podatkovnih kablov za računalniška omrežja</li>
|
||||
<li>Montaža komunikacijskih omaric</li>
|
||||
<li>Urejanje komunikacijskih vozlišč</li>
|
||||
<li>Montaža in konfiguracija WiFi dostopnih točk</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="service">
|
||||
<h2>elektroinštalacije</h2>
|
||||
<div class="service_content">
|
||||
<ul>
|
||||
<li>Napeljava električnih inštalacij</li>
|
||||
<li>Zamenjava dotrajanih inštalacij</li>
|
||||
<li>Zamenjava rezdelilnih omaric, varovalk, vtičnic in stikal</li>
|
||||
<li>Montaža luči</li>
|
||||
</ul>
|
||||
<img src="images/elektroinstalacije_slika.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<p>2025 Intelidom d.o.o.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
209
style.css
|
|
@ -1,209 +0,0 @@
|
|||
body{
|
||||
background-color: black;
|
||||
color: white;
|
||||
|
||||
font-family: "Roboto Condensed", serif;
|
||||
font-optical-sizing: auto;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
|
||||
padding: 0%;
|
||||
margin: 0%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 5em;
|
||||
}
|
||||
|
||||
/* HEADER */
|
||||
|
||||
#header{
|
||||
|
||||
height: 5em;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
|
||||
background-image: linear-gradient(to right, rgba(87,230,74,0.4), rgba(52,178,249,0.4));
|
||||
}
|
||||
|
||||
#logo{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#logo>img {
|
||||
|
||||
width: 20em;
|
||||
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
#header_background_fade{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 5em;
|
||||
background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(255, 255, 255, 0));
|
||||
}
|
||||
|
||||
#contact{
|
||||
position: absolute;
|
||||
width: 12em;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 1em;
|
||||
gap: 1em;
|
||||
|
||||
right: 0em;
|
||||
}
|
||||
|
||||
#contact_email, #contact_tel{
|
||||
font-size: 1em;
|
||||
padding: 0.1em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 1em;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
transition-duration: 0.2s;
|
||||
}
|
||||
|
||||
#contact_email:hover{
|
||||
cursor:pointer;
|
||||
color: #57E64A;
|
||||
font-size: 1.1em;
|
||||
transition-duration: 0.2s;
|
||||
text-shadow: 0 0 5px black;
|
||||
}
|
||||
|
||||
#contact_tel:hover{
|
||||
cursor:pointer;
|
||||
color: #34B2F9;
|
||||
font-size: 1.1em;
|
||||
transition-duration: 0.2s;
|
||||
text-shadow: 0 0 5px black;
|
||||
}
|
||||
|
||||
#contact_email > img, #contact_tel > img{
|
||||
width: 1.5em;
|
||||
height: 1.5em;
|
||||
}
|
||||
|
||||
#contact_email > p, #contact_tel > p{
|
||||
margin: 0%;
|
||||
}
|
||||
|
||||
/* MAIN */
|
||||
|
||||
#main{
|
||||
|
||||
width: 60em;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 3em;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.service{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.service>h2{
|
||||
font-size: 2em;
|
||||
text-transform:uppercase
|
||||
}
|
||||
|
||||
.service_content{
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
gap: 5em;
|
||||
}
|
||||
|
||||
.service_content>ul{
|
||||
width: 40%;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
.service_content>img{
|
||||
width: 40%;
|
||||
border-radius: 2em;
|
||||
}
|
||||
|
||||
.service_content>ul>li>a{
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: rgb(66, 175, 56);
|
||||
}
|
||||
|
||||
/* FOOTER */
|
||||
|
||||
#footer{
|
||||
background-color: rgba(25, 28, 31, 0.5);
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding-top: 5em;
|
||||
margin-top: 5em;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
|
||||
.service_content>img{
|
||||
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#header{
|
||||
|
||||
display: flex;
|
||||
height: auto;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#contact{
|
||||
position: relative;
|
||||
flex-direction: row;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#logo{
|
||||
position: relative;
|
||||
|
||||
}
|
||||
|
||||
#logo>img{
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
#header_background_fade{
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-image: linear-gradient(to top, rgb(0, 0, 0), rgba(255, 255, 255, 0));
|
||||
}
|
||||
|
||||
#main{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.service_content>ul{
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||