Skip to content

Commit

Permalink
Apply review changes
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Winkler <[email protected]>
  • Loading branch information
rw1nkler committed Apr 30, 2020
1 parent e563859 commit da4f31b
Show file tree
Hide file tree
Showing 6 changed files with 176 additions and 149 deletions.
2 changes: 1 addition & 1 deletion source/assets/data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"url": "https://youtu.be/a31vH_tZLBM"
},
{
"title": "Xilinx Artix 7 support in Symbiflow",
"title": "Xilinx Artix 7 support in SymbiFlow",
"details": "Tim Ansell | ORConf 2019",
"image": "symbiflow_orconf2019.png",
"url": "https://youtu.be/V7jdYMOC9VM"
Expand Down
8 changes: 8 additions & 0 deletions source/assets/scss/getting-started.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
// Getting-Started
// ***********************

.btn {
width: 100%;
}

.getting-wrapper {
height: 100%;
position: relative;
Expand Down Expand Up @@ -69,6 +73,10 @@
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
grid-auto-flow: dense;
grid-gap: 30px;

@media screen and (max-width: 700px) {
grid-template-columns: 100%;
}
}

.getting__buttons a:hover {
Expand Down
12 changes: 8 additions & 4 deletions source/assets/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ a {
}

@media screen and (max-width: 600px) {
grid-template-columns: repeat(1 100%);
grid-template-columns: 100%;
}
}

Expand All @@ -464,7 +464,7 @@ a {
// ***********************

.diagrams {
padding: 60px 0 190px;
padding: 80px 0 120px;

a {
font-weight: bold;
Expand All @@ -477,7 +477,7 @@ a {
}

.diagrams__diagram {
margin: 0 auto 160px;
margin: 0 auto 140px;

@media screen and (max-width: 500px) {
margin-bottom: 80px;
Expand Down Expand Up @@ -558,6 +558,10 @@ a {
margin: 0 auto;
}

.diagram__link {
color: $header-secondary !important;
}

.diagram__table {
table-layout: fixed;
font-size: em(30px);
Expand Down Expand Up @@ -804,7 +808,7 @@ a {
// ***********************

.news {
padding: 90px 0 80px;
padding: 90px 0 120px;
}

.news__container {
Expand Down
6 changes: 3 additions & 3 deletions source/developers.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
</div>
<ul class="nav__links">
<li><a href="index.html#hero">Home</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
<li><a href="developers.html" class="current-page">For Developers</a></li>
<li><a href="getting-started.html">Start using</a></li>
<li><a href="developers.html" class="current-page">Contribute now</a></li>
</ul>
</div>
</nav>
Expand All @@ -55,7 +55,7 @@
from the relevant bitstream documentation project.
This part is done within the
<a href="https://github.com/SymbiFlow/symbiflow-arch-defs" class="tools__link">
Symbiflow Architecture Definitions</a>. The project prepares
SymbiFlow Architecture Definitions</a>. The project prepares
information about the timings and resources available in the chip
needed at the implementation stage, as well as techmaps for
the synthesis tools.
Expand Down
6 changes: 3 additions & 3 deletions source/getting-started.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
</div>
<ul class="nav__links">
<li><a href="index.html#hero">Home</a></li>
<li><a href="getting-started.html" class="current-page">Getting Started</a></li>
<li><a href="developers.html">For Developers</a></li>
<li><a href="getting-started.html" class="current-page">Start using</a></li>
<li><a href="developers.html">Contribute now</a></li>
</ul>
</div>
</nav>
Expand All @@ -51,7 +51,7 @@
you through the process of using the toolchain, explaining how to
generate and load a bitstream into your FPGA.
</p>
<h3> TUTORIALS: </h3>
<h3> RESOURCES: </h3>
</div>
<div class="getting__buttons">
<a href="https://symbiflow.readthedocs.io/en/latest/toolchain-desc.html">
Expand Down
Loading

0 comments on commit da4f31b

Please sign in to comment.