Skip to content

Commit

Permalink
Add 2024 navbar logo
Browse files Browse the repository at this point in the history
  • Loading branch information
rudis committed Aug 31, 2024
1 parent 73eb99e commit 62a5732
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
12 changes: 11 additions & 1 deletion src/ctf_gameserver/web/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,17 @@ img#load-spinner, button#refresh {

.jumbotron img.big-logo {
margin-right: 30px;
width: 30%;
width: 40%;
}

.navbar-brand {
padding: 5px 15px;
}

.navbar-brand img {
display: inline;
margin-right: 15px;
height: 35px;
}

#supporter-column img {
Expand Down
7 changes: 5 additions & 2 deletions src/ctf_gameserver/web/templates/base-common.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<meta property="og:type" content="website" />
<meta property="og:site_name" content="{{ competition_name }}" />
<meta property="og:image" content="https://www.faustctf.net{% static 'faustctf.svg' %}" />
<meta property="og:image" content="/img/faustctf.png" />
</head>


Expand All @@ -47,7 +47,10 @@
<span class="icon-bar"></span>
</button>

<a class="navbar-brand" href="{{ HOME_URL }}">{{ competition_name }}</a>
<a class="navbar-brand" href="{{ HOME_URL }}">
<img src="/img/faustctf.png" alt="FAUST CTF 2024 logo" />
<span>{{ competition_name }}</span>
</a>
</div>

<div class="collapse navbar-collapse" id="main-menu">
Expand Down

0 comments on commit 62a5732

Please sign in to comment.