-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
887 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
404.html,1715813689003,b6abfbdc894d37c260154e281499dc6415bb6ad76b32f01ef94dee93aa897ac4 | ||
contact.html,1716148301977,79716ff932d9eadf8f40f6dde7626f8a390fff53b61dcd591ca2446b0b732d3a | ||
directions.html,1716148527230,9151315b86ead0a3f413007005ebef9f9f090fd48edd5414c417b8917811f00d | ||
directions.html,1717777723237,20a1cecaea957d98153084b0869d25783585884618a72073ebbd51463bb2f32a | ||
ikkeibruk.html,1716197058403,a6070a9525aaba353bc2f7855f2ebdc5cc9d2ed7e45e8ed447d51f5870d5e466 | ||
index.html,1716149744449,133a559aea5073398cce027e9d6d287bde9e93ecd354c75f9c3e46dd2ad73c88 | ||
css/directions.css,1716148224138,57ed04d8ec6946921f02834d55e48ff8bc6a10566fd59ca66bfe21a15693cf2f | ||
css/index.css,1716148636035,1055fd7fcc49ea8586d13195e9769e7b65d49a2f70ec56dabb39fa2f0c431ddf | ||
index.html,1717777495286,6e83da4d004990190c60d3af5f64ee3fca95fcef39908968a4c5f835d2637460 | ||
css/contact.css,1717778421256,c523eecb369b73514322d762f8e6ed6ec0414bf71de0439f739b36ab1a57014f | ||
css/directions.css,1718100794564,b88a7b31e51ef5cc40a7576fb27286512dcd23e375650dae34ae05ce10ef1d47 | ||
css/index.css,1717777573951,8e52d847c4b98e53eba3ca9b25bd1cd6a84c82eddc62df69213bd033083a0559 | ||
media/etterkl9.jpg,1716147000891,9a4f2c54dee84dd70c46f662f82643fcf94e69d978942fe208e70569aff9f0f0 | ||
media/forkl9.jpg,1716146515334,27da2b7e7866853011f0a13fb65e569d826cab9830e4c77950119b7b512003e0 | ||
media/logo.png,1715281714069,960b70647aee6ba888cb8bfde3532bde3e87c75ccae0eda23d2c490baca0cd70 | ||
media/lungelege-saeed-vahedi.webp,1714916879048,54dbbee4745c05ba5a481e08b778dd97a251aca36839fe24611936accdc26a63 | ||
media/parkeringinngang.jpg,1716146294230,474ca4186c5206d3bd05a169664fc521f04b037046b12219d62ade47d567c44f | ||
contact.html,1718207311947,6ff8e53724e10bd47dee40b5d18e7b3d3eb5ec6313b94c287f798fb4ef15bab5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
body { | ||
background-color: #f7f7f7; | ||
} | ||
|
||
.topnav { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
background-color: #ffffff; | ||
overflow: hidden; | ||
height: 140px; | ||
padding-right: 50px; | ||
} | ||
|
||
@media screen and (max-width: 740px) { | ||
.nav-links { | ||
display: none; | ||
} | ||
} | ||
|
||
@media screen and not (max-width: 740px) { | ||
.dropdown { | ||
display: none; | ||
} | ||
} | ||
|
||
.topnav a { | ||
color: #3c3c3c; | ||
text-align: center; | ||
padding: 14px 16px; | ||
text-decoration: none; | ||
font-size: 20px; | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
font-weight: 300; | ||
margin: 20px; | ||
} | ||
|
||
.nav-links { | ||
margin-left: auto; | ||
} | ||
|
||
|
||
/* Change the color of links on hover */ | ||
.topnav a:hover { | ||
background-color: #ddd; | ||
color: black; | ||
} | ||
|
||
/* Add a color to the active/current link */ | ||
.topnav a.active { | ||
/* background: linear-gradient(to right, rgb(103, 143, 105), #375940); */ | ||
background-color: rgb(76,113,112); | ||
color: white; | ||
border-radius: 10px; | ||
} | ||
|
||
.logo { | ||
width: 120px; /* Adjust this value as needed */ | ||
height:120px; /* Adjust this value as needed */ | ||
border-radius: 50%; | ||
margin-top: 5px; | ||
margin-left: 50px; | ||
transform: scale(1); /* Increase the size of the image */ | ||
object-fit: cover; | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.dropdown button { | ||
width: 100px; | ||
color: #3c3c3c; | ||
text-align: center; | ||
padding: 14px 16px; | ||
text-decoration: none; | ||
font-size: 20px; | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
font-weight: 300; | ||
margin: 20px; | ||
background-color: rgb(255, 255, 255); | ||
color: rgb(0, 0, 0); | ||
border-radius: 5px; | ||
border-color: rgb(208, 208, 208); | ||
} | ||
|
||
.dropdown-content { | ||
display: none; | ||
justify-content: right; | ||
position: absolute; | ||
background-color: #f9f9f9; | ||
min-width: 160px; | ||
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | ||
z-index: 1; | ||
} | ||
|
||
/* Links inside the dropdown */ | ||
.dropdown-content a { | ||
float: none; | ||
color: black; | ||
padding: 12px 16px; | ||
text-decoration: none; | ||
display: block; | ||
text-align: left; | ||
} | ||
|
||
/* Add a grey background color to dropdown links on hover */ | ||
.dropdown-content a:hover { | ||
background-color: #ddd; | ||
} | ||
|
||
/* Show the dropdown menu on hover */ | ||
.dropdown:hover .dropdown-content { | ||
display: block; | ||
} | ||
|
||
.content { | ||
display: grid; | ||
grid-template-columns: 3fr 2fr; | ||
grid-template-rows: auto; | ||
margin-top: 0px; | ||
padding-top: 0px; | ||
height: 750px; | ||
} | ||
|
||
@media screen and (max-width: 740px) { | ||
.content { | ||
grid-template-columns: 90vw 1fr; | ||
grid-template-rows: 1fr auto; | ||
} | ||
.left { | ||
grid-column: 1/2; | ||
grid-row: 1/2; | ||
} | ||
.right { | ||
grid-column: 1/3; | ||
grid-row: 2/3; | ||
} | ||
} | ||
|
||
.left { | ||
display: flex; | ||
flex-direction: column; | ||
flex-basis: 30%; | ||
margin: 50px; | ||
position: relative; | ||
} | ||
|
||
.right { | ||
display: flex; | ||
flex-direction: column; | ||
flex-basis: 50%; | ||
margin-right: 0px; | ||
} | ||
|
||
.right img { | ||
width: 750px; | ||
height: auto; | ||
object-fit: cover; | ||
margin-right: 0px; | ||
} | ||
|
||
.uk-text { | ||
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; | ||
font-weight: 300; | ||
color: #2d2e33; | ||
font-size: 40px, 40px, 20px; | ||
} | ||
|
||
.find-us { | ||
top: 30%; | ||
left: 70px; | ||
} | ||
|
||
.find-us button { | ||
background-color: rgb(76,113,112); | ||
border: none; | ||
color: white; | ||
padding: 15px 32px; | ||
text-align: center; | ||
text-decoration: none; | ||
display: inline-block; | ||
font-size: 20px; | ||
margin: 5px; | ||
cursor: pointer; | ||
border-radius: 50px; | ||
} | ||
|
||
.description { | ||
margin-top: 10px; | ||
} | ||
|
||
.hidden { | ||
display: none; | ||
} | ||
|
||
/* Ikke i bruk */ | ||
|
||
.book-appointment { | ||
position: absolute; | ||
top: 40%; /* Adjust as needed */ | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
padding: 10px 20px; | ||
background-color: #4769da; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
font-size: 16px; | ||
} | ||
|
||
.main-img { | ||
width: 100%; | ||
height: 450px; | ||
object-fit: cover; | ||
background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)); | ||
-webkit-filter: brightness(40%); | ||
filter:brightness(40%); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.