Skip to content

Commit

Permalink
Added a logo
Browse files Browse the repository at this point in the history
  • Loading branch information
plonerma committed Apr 3, 2024
1 parent 9e7e277 commit 146b432
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
</head>
<body>
<header>
<div class="logo-div">
<img src="./media/logo.png" class="logo">
</div>
<div class="title-div">
<h1>LM Pub Quiz</h1>
<h2 class="subtitle">Evaluating language models using multiple choice items</h2>
<nav>
Expand All @@ -20,6 +24,7 @@ <h2 class="subtitle">Evaluating language models using multiple choice items</h2>
<a href=""><i class="bi bi-file-earmark"></i> Paper</a> /
<a href=""><i class="bi bi-file-zip"></i> Raw Results</a>
</nav>
</div>
</header>

<section>
Expand Down
Binary file added media/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,20 @@ section {
background-color: var(--nc-bg-1);
}

header {
display: flex;
flex-wrap: wrap;
}

.logo-div {
flex: 0 0 145px;
margin-right: 2rem;
}

.title-div {
flex: 1 0 350px;
}

header nav {
color: var(--nc-tx-2)
}
Expand Down Expand Up @@ -102,3 +116,11 @@ figcaption {
.dataframe {
font-size: .8rem;
}

.logo {
width: 145px;
border-radius: 50%;
object-fit: fill;
height: 145px;
box-shadow: 2px 2px 8px 8px rgba(0,0,0,0.1);
}

0 comments on commit 146b432

Please sign in to comment.