Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/faiconDog2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/y1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/y2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/y3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/y4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/y5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
76 changes: 75 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,83 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/yachts-styles.css">
<title>Document</title>
</head>
<body>
<label style="font-size: 40px;display: block; text-align: center;">My name is Yuri Granovsky</label>
<header class="logo">
YACHTGRAM
</header>
<main class="main-class">
<section class="details-container">
<img src="images/y1.jpg" class="details-image">
<span class="details-title">Choose type of yacht</span>
</section>
<ul class="thumbnails-list">
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y1.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht1</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y2.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht2</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y3.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht3</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y4.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht4</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y5.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht5</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y1.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht1</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y2.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht2</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y3.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht3</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y4.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht4</span>
</a>
</li>
<li class="thumbnails-item">
<a href="#" class="thumbnails-anchor">
<img src="images/y5.jpg" class="thumbnails-image">
<span class="thumbnails-title">yacht5</span>
</a>
</li>

</ul>

</main>

</body>
</html>
Binary file added styles/fonts/Airstream-webfont.eot
Binary file not shown.
479 changes: 479 additions & 0 deletions styles/fonts/Airstream-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added styles/fonts/Airstream-webfont.ttf
Binary file not shown.
Binary file added styles/fonts/Airstream-webfont.woff
Binary file not shown.
Binary file added styles/fonts/LAKESHOR-webfont.eot
Binary file not shown.
249 changes: 249 additions & 0 deletions styles/fonts/LAKESHOR-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added styles/fonts/LAKESHOR-webfont.ttf
Binary file not shown.
Binary file added styles/fonts/LAKESHOR-webfont.woff
Binary file not shown.
67 changes: 67 additions & 0 deletions styles/yachts-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
body {
display: flex;
flex-direction: column;
background-color: rgb(230, 245, 245);
}
.logo {
font-size: 2em;
background-color: bisque;
display: inline; display:block;
text-align: center;
}
.main-class {

}
.details-container {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 2.5vh+++;


}
.details-image {
width: 80vw;
height: 60vw;
border-radius: 25%;

}
.details-title {
display: block;

}
.thumbnails-list {
list-style: none;
display: flex;
flex-direction: row;
flex-wrap: wrap;
max-height: 25vh;
overflow-y: auto;
justify-content: space-around;
padding-left: 0;


}
.thumbnails-item {
width: 20vw;
height: 20vw;
margin-top: 2vh;
background-color: rgb(165, 190, 175);
border: solid 1px;
border-color: rgb(52, 59, 56);


}
.thumbnails-image {
width: 20vw;
height: 15vw;
}
.thumbnails-title {
display: block;
text-align: center;
height: 5vw;
background-color: rgb(165, 190, 175);
}
.thumbnails-anchor {
text-decoration: none;
}