Remove TTT Announcement, Fix UI Colors (#26)

* Remove TTT announcement.

* Fix background colors not breaking.

* Change the entire announcement to be a link, add classes for getting specific font colors, reorganize background classes.
This commit is contained in:
2024-05-16 09:58:55 -07:00
committed by GitHub
parent 8bf7981b90
commit 7d5cff9c67
3 changed files with 28 additions and 23 deletions

View File

@ -5,20 +5,22 @@
<div class="row center" id="advisory">
<div class="col-12 title">
<h2><i>Announcements</i></h2>
<i><h2>Announcements</h2></i>
</div>
<div class="col-12 text">
<u>2024-03-07</u>
<br/>
Find my free new eBook, "Hyperling's Health Protocol",
<a href="/health/">here</a>!
</div>
<div class="col-12 text">
<a href="/health/">
<div class="col-12 text">
<u class="orange">2024-03-07</u>
<br/>
Find my free new eBook, "Hyperling's Health Protocol",
<u class="orange">here</u>!
</div>
</a>
<!--<div class="col-12 text">
<u>2024-03-31</u>
<br/>
There's a
<a href="/home/#tictactoe">new app</a>
in town,
<a href="/files/apks/TicTacToe.apk">Tic-Tac-Toe</a>!
</div>
</div>-->
</div>

View File

@ -7,23 +7,26 @@
color: #CCCCCC;
}
a {
a,.orange {
color: #FF9900
}
h1,h2,h3,h4,h5,h6 {
h1,h2,h3,h4,h5,h6,.purple {
color: #663399;
}
.header {
/*background-color: #113311;*/
background-color: #222222;
.green {
color: #33CC33;
}
.title {
background-color: #111111;
}
.header {
background-color: #222222;
}
.text {
background-color: #333333;
}