diff --git a/constants.json b/constants.json index 68bfbe3..0ae64ea 100644 --- a/constants.json +++ b/constants.json @@ -345,6 +345,12 @@ "YIP" ], "italicized": true + }, + { + "words": [ + "Miley" + ], + "color": "rgb(255, 255, 175)" } ] } \ No newline at end of file diff --git a/static/index.html b/static/index.html index 0bf9655..dd9c60e 100644 --- a/static/index.html +++ b/static/index.html @@ -102,6 +102,12 @@ {SELECTED_VIDEO} +
{WEATHER_TEXT}
diff --git a/static/style.css b/static/style.css index b48e13f..26ae4ac 100644 --- a/static/style.css +++ b/static/style.css @@ -76,7 +76,7 @@ body, html { } a { - display: inline-block; + display: inline; transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1); } @@ -84,6 +84,15 @@ a[href] { color: rgb(175, 225, 255); } +a:not(.chip)[href] { + text-decoration: none; + + background-image: linear-gradient(rgb(175, 225, 255), rgb(175, 225, 255)); + background-size: 100% 1px; + background-position-y: 100%; + background-repeat: no-repeat; +} + h3 { font-size: 1.5rem; @@ -267,6 +276,15 @@ ul, ol { max-width: 90%; } +ul { + list-style: none; +} + +ul > li::before { + content: "-"; + padding-right: 8px; +} + li { font-size: 1.2rem; padding: 5px 0;