Skip to content

Commit

Permalink
Merge pull request #14 from SamaraFellaDina/Sammy
Browse files Browse the repository at this point in the history
heel veel
  • Loading branch information
SamaraFellaDina authored Nov 28, 2023
2 parents 7a50efe + 660d69e commit 90b26dd
Show file tree
Hide file tree
Showing 7 changed files with 178 additions and 8 deletions.
7 changes: 7 additions & 0 deletions assets/icons/House.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions assets/icons/Menu.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions assets/icons/User.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions assets/logo/02-funda-Blue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 24 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,31 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saved Houses</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="assets\icons">
</head>
<body>

<header class="header">
<button class="hamburger">Menu<img src="assets/icons/Menu.svg" alt="Menu">
<div class=".bar"></div>
</button>
<a href="https://www.funda.nl/"><img src="assets\logo\02-funda-Blue.svg" alt="logo funda" class="logo-funda"/></a>
<nav>

<ul class="nav-list-left">
<a href="https://www.funda.nl/zoeken/koop/?">Kopen</a>
<a href="https://www.funda.nl/zoeken/huur">Huren</a>
<a>Verkopen</a>
</ul>

<ul class="nav-list-right">
<a><img src="assets\icons\House.svg">Mijn huis</a>
<a><img src="assets\icons\User.svg"></i>Profiel</a>
<!-- Nog een "alt" nodig? -->
</ul>
</nav>


</header>
</body>
</html>
Empty file added scripts/scripts.js
Empty file.
102 changes: 96 additions & 6 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,105 @@
--secundairy-color-3:#F8C463;
--secundairy-color-4:#66BA96;

--grayscale-color-1:#EDEDED;
--grayscale-color-2:#CCCCCC;
--grayscale-color-3:#666666;
--grayscale-color-4:#333333;

--background-color-1:#EDEDED;
--background-color-2:#333333;

--content-radius: 3px;
--regular-text: 16px;
--regular-text: 1em;
--fonts:"ProximaNova", sans-serif;

}

* {
font-family: var(--fonts);
}

body {
background-color: var(--background-color-1);
color: var(--primairy-color-2);
margin: 0;
padding: 0;

font-size: var(--regular-text);

}

/* Heading door @samarafelladina */
/* organismen */
header {
padding: .8em;
font-size: .8em;
display: flex;
}

button {
appearance: auto;
border-style: none;
}

ul {
list-style: none;
}

.header {
display: flex;
background-color: var(--secundairy-color-1);
align-items: center;
gap: .8em;
}

.logo-funda {
width: auto;
height: 2em;
cursor: pointer;
}

.hamburger{
flex-direction: column-reverse;
}

.nav-list-right, .nav-list-left {
display: flex;
gap: 1em;
margin-block-start: 0;
margin-block-end: 0;
}

.nav-list-right a {
flex-direction: column;
}

.hamburger, .nav-list-right a, .nav-list-left {
height: auto;
width: auto;
background: none;
color: var(--primairy-color-2);

text-align: center;
cursor: pointer;
font-size: .8em;
display: flex;
justify-content: center;
}

.hamburger img, .nav-list-right img {
height: 2em;
width: auto;
align-self: center;
border-spacing: 1em;
}

.header a:link, .header a:visited, .header a:active{
color: var(--primairy-color-2);
text-decoration: none;
}


/* Wat is een Pseudo (::) element? Dit is een element wat een
deel van een element gebruikt, bijvoorbeeld de eerste letter,
of kan je dingen voor en na invoegen aan het element. */


/* Heading door @samarafelladina */


0 comments on commit 90b26dd

Please sign in to comment.