Skip to content

Commit 0cc57af

Browse files
authored
Merge pull request #19 from oceanhackweek/copilot/change-hero-banner-left-panel
Change hero banner left panel to white background with black text
2 parents 4cee811 + cd4e946 commit 0cc57af

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

{{ cookiecutter.repo_directory }}/assets/css/main.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ header.header {
5959

6060
/* Left panel */
6161
.hero-panel-text {
62-
background-color: #000;
63-
color: #fff;
62+
background-color: #fff;
63+
color: #000;
6464

6565
display: flex;
6666
align-items: center;
@@ -83,11 +83,11 @@ header.header {
8383
.hero-panel-title,
8484
.hero-panel-desc,
8585
.hero-panel-meta {
86-
color: #fff !important;
86+
color: #000 !important;
8787
opacity: 1 !important;
8888
filter: none !important;
8989
mix-blend-mode: normal !important;
90-
-webkit-text-fill-color: #fff !important; /* iOS */
90+
-webkit-text-fill-color: #000 !important; /* iOS */
9191
}
9292

9393
/* Typography */
@@ -187,7 +187,7 @@ header.header {
187187
font-size: 0.95rem;
188188
font-weight: 700;
189189
letter-spacing: 0.06em;
190-
color: #fff;
190+
color: #000;
191191
opacity: 0.9;
192192
}
193193

{{ cookiecutter.repo_directory }}/index-es.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
{%- for img in cookiecutter.banner.image %}
4747
<div class="carousel-item {% if loop.first %}active{% endif %}">
4848
<div class="hero-split" aria-hidden="true">
49-
<!-- Left: black panel -->
49+
<!-- Left: white panel -->
5050
<div class="hero-panel-text">
5151
<div class="hero-panel-inner">
5252

{{ cookiecutter.repo_directory }}/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
{%- for img in cookiecutter.banner.image %}
4848
<div class="carousel-item {% if loop.first %}active{% endif %}">
4949
<div class="hero-split" aria-hidden="true">
50-
<!-- Left: black panel -->
50+
<!-- Left: white panel -->
5151
<div class="hero-panel-text">
5252
<div class="hero-panel-inner">
5353

0 commit comments

Comments
 (0)