Basic outline

This commit is contained in:
Aleks Rūtiņš 2024-06-02 10:32:07 -04:00
parent 4dd492a789
commit 160fd6901f
6 changed files with 55 additions and 2 deletions

View file

@ -26,6 +26,13 @@
<div class="fade fade5">
<section-link href="/concepts.html">1. Concepts of Biocircuits</section-link>
<section-link href="/simplest-circuit.html">2. The Simplest Circuit</section-link>
<section-link href="/repressors.html">3. Repressors & Leaks</section-link>
<section-link href="/activators.html">4. Activators</section-link>
<section-link href="/hill-functions.html">5. Ultrasensitivity & the Hill Function</section-link>
<section-link href="/activators-vs-repressors.html">6. Choosing Between Activators & Repressors</section-link>
<div class="under-construction">
More Sections Under Construction
</div>
</div>
</section>
@ -93,4 +100,22 @@
font-style: italic;
margin-top: -10px;
}
.under-construction {
padding: 10px;
margin-top: 10px;
margin-bottom: 10px;
text-transform: uppercase;
color: inherit;
border: 2px solid;
opacity: 0.9;
text-align: center;
background: repeating-linear-gradient(
45deg,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0) 10px,
rgba(0, 0, 0, 0.1) 10px,
rgba(0, 0, 0, 0.1) 20px
);
}
</style>