Skip to content

Commit

Permalink
Merge pull request #60 from things-nyc/update
Browse files Browse the repository at this point in the history
Fix centering of sections on main page. Bold FAQ questions
  • Loading branch information
jchonig authored Jan 3, 2024
2 parents 54119cf + 8572b64 commit f4b17d7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h2 class="card-header bg-primary text-white text-center">{{ section_title }}</h
{% for question in section['questions'] %}
<div class="col">
<div class="card border-secondary">
<div class="card-header text-primary">{{ question['question'] }}</div>
<div class="card-header text-primary fw-bold">{{ question['question'] }}</div>
<div class="card-body">{{ question['answer'] }}</div>
</div>
</div>
Expand Down
15 changes: 8 additions & 7 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
</style>

<div class="container my-5 p-5 text-white text-center vh-100 vw-100" id="header">
<div class="container my-5 p-5 text-white text-center vh-100 vw-100 d-flex" id="header">
<div class="align-self-top">
<div>
<h1>{{ page.title }}</h1>
Expand All @@ -29,7 +29,7 @@ <h1>{{ page.title }}</h1>
</style>

<!-- Start of content -->
<section class="mission" id="start">
<section class="container" id="start">
<div class="container mx-5 mb-5">
<div class="row">
<div class="col-lg-4 text-center">
Expand All @@ -46,8 +46,8 @@ <h3>{{ page.title }}'s Mission</h3>
</div>
</section>

<section class="learn">
<div class="container mx-5 mb-5 bg-secondary bg-opacity-25">
<section id="learn" class="container">
<div class="container mx-5 mb-5 pt-2 bg-secondary bg-opacity-25">
<div class="row">
<div class="col-lg-7 text-left">
<h3>Learn about {{ page.title }}</h3>
Expand All @@ -60,7 +60,8 @@ <h4>The Things Network New York</h4>
<p class="bg-warning">Mostly in NYC, with a sub-group in Ithaca area, with link</p>
-->
<h4>What we are doing</h4>
<p>Read about our <a href="/projects">active projects</a> to see if there is one that piques your interest. Also check out our <a href="/repos">repos</a>.
<p>Read about our <a href="/projects">active projects</a> to
see if there is one that interests you. Also check out our <a href="/repos">repos</a>.
We also invite you to read our <a href="https://github.com/things-nyc/things-nyc-docs/wiki" target=_blank>Wiki <i class="fa fa-external-link"></i></a> for more details.</p>
<h4>Getting involved</h4>
<p>If you are interested in getting involved, please:
Expand All @@ -74,7 +75,7 @@ <h4>Getting involved</h4>
</div>
</div>
<div class="col-lg-5 text-center">
<img class="ttn-logo pt-5" src="/img/nystate.png" />
<img class="ttn-logo py-4" src="/img/nystate.png" />
</div>
</div>
</div>
Expand All @@ -87,7 +88,7 @@ <h4>Getting involved</h4>
}
</style>

<section id="support" class="brief">
<section class="container" id="support" class="brief">
<div class="container mx-5 mb-5">
<div class="row">
<div class="col-lg-2">
Expand Down

0 comments on commit f4b17d7

Please sign in to comment.