-
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
3 changed files
with
283 additions
and
275 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,25 +1,42 @@ | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Sambíóin</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="navbar"> | ||
<div><img class="logo" src="img/Sambio-Logo-small.png" alt="Sambio logo"></div> | ||
<p>IS | EN</p> | ||
</div> | ||
<h1>VELKOMIN Í</h1> | ||
<h1>SAMBÍÓIN!</h1> | ||
<h2>VELDU BÍÓHÚS</h2> | ||
<div class="container"> | ||
<div class="item"><a href="page2.html">AKUREYRI</a><img src="img/sam-akureyri.png" alt="Sambio Akureyri"></div> | ||
<div class="item"><a href="page2.html">ÁLFABAKKI</a><img src="img/sambioalfa1.jpg" alt="Sambio Alfabakki"></div> | ||
<div class="item"><a href="page2.html">EGILSHÖLL</a><img src="img/sambioegils1.jpg" alt="Sambio Egilsholl"></div> | ||
<div class="item"><a href="page2.html">KEFLAVÍK</a><img src="img/keflavik.jpg" alt="Sambio Keflavik"></div> | ||
<div class="item"><a href="page2.html">KRINGLAN</a><img src="img/kringlan.jpg" alt="Sambio Kringlan"></div> | ||
|
||
</div> | ||
<div class="button1"><button>SJÁ ALLAR SÝNINGAR</button></div> | ||
</body> | ||
<link rel="stylesheet" href="style.css" /> | ||
</head> | ||
<body> | ||
<div class="navbar"> | ||
<div> | ||
<img class="logo" src="img/Sambio-Logo-small.png" alt="Sambio logo" /> | ||
</div> | ||
<p>IS | EN</p> | ||
</div> | ||
<h1>VELKOMIN Í</h1> | ||
<h1>SAMBÍÓIN!</h1> | ||
<h2>VELDU BÍÓHÚS</h2> | ||
<div class="container"> | ||
<div class="item"> | ||
<a href="page2.html">AKUREYRI</a> | ||
<img src="img/sam-akureyri.png" alt="Sambio Akureyri" /> | ||
</div> | ||
<div class="item"> | ||
<a href="page2.html">ÁLFABAKKI</a | ||
><img src="img/sambioalfa1.jpg" alt="Sambio Alfabakki" /> | ||
</div> | ||
<div class="item"> | ||
<a href="page2.html">EGILSHÖLL</a | ||
><img src="img/sambioegils1.jpg" alt="Sambio Egilsholl" /> | ||
</div> | ||
<div class="item"> | ||
<a href="page2.html">KEFLAVÍK</a | ||
><img src="img/keflavik.jpg" alt="Sambio Keflavik" /> | ||
</div> | ||
<div class="item"> | ||
<a href="page2.html">KRINGLAN</a | ||
><img src="img/kringlan.jpg" alt="Sambio Kringlan" /> | ||
</div> | ||
</div> | ||
<div class="button1"><button>SJÁ ALLAR SÝNINGAR</button></div> | ||
</body> | ||
</html> |
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,101 +1,100 @@ | ||
body { | ||
background-color: black; | ||
font-family: "Inter", sans-serif; | ||
color: #F1F1F1; | ||
background-color: black; | ||
font-family: "Inter", sans-serif; | ||
color: #f1f1f1; | ||
} | ||
/* nav bar */ | ||
/* nav bar */ | ||
.navbar { | ||
height: auto; | ||
width: 95%; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
height: auto; | ||
width: 95%; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.logo { | ||
width: 250px; | ||
height: 100px; | ||
padding-left: 4%; | ||
width: 250px; | ||
height: 100px; | ||
padding-left: 4%; | ||
} | ||
|
||
.navbar p { | ||
font-size: 20px; | ||
font-weight: bold; | ||
font-size: 20px; | ||
font-weight: bold; | ||
} | ||
|
||
h1 { | ||
text-align: center; | ||
font-size: 60px; | ||
line-height: 0.5; | ||
text-align: center; | ||
font-size: 60px; | ||
line-height: 0.5; | ||
} | ||
|
||
h2 { | ||
padding-left: 10%; | ||
padding-left: 10%; | ||
} | ||
/*image container */ | ||
/*image container */ | ||
.container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
} | ||
|
||
.item { | ||
width: 350px; | ||
height: 275px; | ||
margin: 15px; | ||
border-radius: 30px; | ||
overflow: hidden; | ||
flex-shrink: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 350px; | ||
height: 275px; | ||
margin: 15px; | ||
border-radius: 30px; | ||
overflow: hidden; | ||
flex-shrink: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.item a { | ||
text-align: center; | ||
color: #F1F1F1; | ||
text-decoration: none; | ||
font-weight: bold; | ||
font-size: large; | ||
display: none; | ||
position: absolute; | ||
z-index: 3; | ||
text-align: center; | ||
color: #f1f1f1; | ||
text-decoration: none; | ||
font-weight: bold; | ||
font-size: large; | ||
display: none; | ||
position: absolute; | ||
z-index: 3; | ||
} | ||
|
||
.item img { | ||
height: auto; | ||
|
||
height: auto; | ||
} | ||
|
||
.item:hover img { | ||
display: none; | ||
display: none; | ||
} | ||
|
||
.item:hover { | ||
background: #1A83C6; | ||
opacity: 85%; | ||
border-radius: 30px; | ||
background: #1a83c6; | ||
opacity: 85%; | ||
border-radius: 30px; | ||
} | ||
|
||
.item:hover a { | ||
display: block; | ||
color: #F1F1F1; | ||
display: block; | ||
color: #f1f1f1; | ||
} | ||
|
||
.button1 { | ||
display: flex; | ||
justify-content: center; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
button { | ||
background-color: #1A83C6; | ||
color: #F1F1F1; | ||
width: 300px; | ||
padding: 10px; | ||
border: none; | ||
border-radius: 7px; | ||
margin: 30px; | ||
font-weight: bold; | ||
border-color: #F1F1F1; | ||
border-style: solid; | ||
} | ||
background-color: #1a83c6; | ||
color: #f1f1f1; | ||
width: 300px; | ||
padding: 10px; | ||
border: none; | ||
border-radius: 7px; | ||
margin: 30px; | ||
font-weight: bold; | ||
border-color: #f1f1f1; | ||
border-style: solid; | ||
} |
Oops, something went wrong.