Skip to content

Commit de11bcc

Browse files
adds shadow to red logo
1 parent d329708 commit de11bcc

4 files changed

Lines changed: 28 additions & 1 deletion

File tree

index.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,14 @@
133133
<div id="header-content" class="container" itemscope="itemscope" itemtype="http://schema.org/Event">
134134

135135
<div class="wow animated fadeInDown" style="margin-top: 50px;">
136-
<img class="home-screen-logo" src="./static\logos\logo_full_red.png" style="height: 8vh;" alt="KJSCE CodeCell">
136+
<div class="home-screen-logo">
137+
<div class="red-logo">
138+
<img src="./static\logos\logo_full_red.png" style="height: 8vh;" alt="KJSCE CodeCell">
139+
</div>
140+
<div class="blue-logo">
141+
<img src="./static\logos\logo-full-blue.png" style="height: 8vh;" alt="KJSCE CodeCell">
142+
</div>
143+
</div>
137144
</div>
138145

139146

static/logos/logo-full-blue.png

-756 Bytes
Loading

static/logos/logo_full_red.png

2.59 KB
Loading

static/styles/styles.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12145,13 +12145,33 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1214512145
font-size: 15px;
1214612146
}
1214712147

12148+
.home-screen-logo{
12149+
height: 6vh;
12150+
position: relative;
12151+
display: flex;
12152+
justify-content: center;
12153+
}
12154+
12155+
.red-logo {
12156+
position: absolute;
12157+
top: -10%;
12158+
z-index: 2;
12159+
}
12160+
.blue-logo {
12161+
position: absolute;
12162+
z-index: 1;
12163+
}
12164+
1214812165
/* for smaller screen make sure the home screen logo does not overflow */
1214912166
@media only screen and (max-width: 377px) {
1215012167
.home-screen-logo {
1215112168
height: 6vh !important;
12169+
position: relative;
1215212170
}
12171+
1215312172
}
1215412173

12174+
1215512175
@media only screen and (max-width: 370px) {
1215612176
.main-menu {
1215712177
padding: 0 0 37px 0;

0 commit comments

Comments
 (0)