diff options
| author | dev | 2026-06-27 07:40:23 +0200 |
|---|---|---|
| committer | dev | 2026-06-27 07:40:23 +0200 |
| commit | 861f3988c71dc74256c3297fd6ae3b9484e3668c (patch) | |
| tree | ae088219719416992b2894564e77c1e1bdddaaa7 /resources/views/cinema_show.blade.php | |
| parent | 3aaeec8c59f0f79f1a02d8d1a58b054e57e3bc85 (diff) | |
| download | curious-861f3988c71dc74256c3297fd6ae3b9484e3668c.tar.gz | |
style: apply pink accent color (#ff2e63) across the site
- btn-primary and badge-primary now use pink instead of cyan
- Add btn-hnimdb-cyan class for cyan buttons where needed
- HN comment text and 'Mentions on Hacker News' header in pink
- Genre badges on cinema show page now pink (badge-primary)
Diffstat (limited to 'resources/views/cinema_show.blade.php')
| -rw-r--r-- | resources/views/cinema_show.blade.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/resources/views/cinema_show.blade.php b/resources/views/cinema_show.blade.php index 56dd89f..92e684d 100644 --- a/resources/views/cinema_show.blade.php +++ b/resources/views/cinema_show.blade.php @@ -25,7 +25,7 @@ .hn-comment { font-size: 0.875rem; - color: #868e96; + color: var(--cinema-pink); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; @@ -33,6 +33,10 @@ text-overflow: ellipsis; } +.hn-heading { + color: var(--cinema-pink); +} + @media (max-width: 768px) { .movie-credits { columns: 1; @@ -153,7 +157,7 @@ @if ( ! empty($hnStories) ) <div class="mt-3"> - <h4>Mentions on Hacker News</h4> + <h4 class="hn-heading">Mentions on Hacker News</h4> <ul class="list-unstyled"> @foreach($hnStories as $story) <li> |
