Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added frontend/Trail-of-Bits-alt-dark-background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
</head>
<body>
<div class="container">
<div class="header-logo-corner">
<a href="https://www.trailofbits.com/" target="_blank" rel="noopener noreferrer">
<img src="Trail-of-Bits-alt-dark-background.png" alt="Trail of Bits" class="tob-logo">
</a>
</div>
<div class="title-section">
<h1>Checksec Anywhere</h1>
<p class="subtitle">Analyze binary security features in your browser</p>
Expand Down Expand Up @@ -77,6 +82,7 @@ <h2 id="resultsTitle">Security Analysis Results</h2>
</div>
</div>
<p class="source-link">Check out the <a href="https://github.com/trailofbits/checksec-anywhere" target="_blank" rel="noopener noreferrer">source code</a>!</p>
<p class="developed-by">Developed by Trail of Bits</p>
</div>
</footer>
<script type="module" src="app.js"></script>
Expand Down
39 changes: 39 additions & 0 deletions frontend/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,26 @@ body {
margin: 0 auto;
width: 100%;
box-sizing: border-box;
position: relative;
}

.header-logo-corner {
position: fixed;
top: 0.5rem;
right: 0.5rem;
z-index: 10;
}

.header-logo-corner .tob-logo {
height: 65px;
width: auto;
opacity: 0.7;
transition: opacity 0.3s ease, transform 0.2s ease;
}

.header-logo-corner .tob-logo:hover {
opacity: 1;
transform: scale(1.05);
}

.title-section {
Expand Down Expand Up @@ -304,6 +324,18 @@ body {
padding: 20px 15px;
}

.header-logo-corner {
position: relative;
top: 0;
right: 0;
text-align: center;
margin-bottom: 1.5rem;
}

.header-logo-corner .tob-logo {
height: 55px;
}

.footer-info {
flex-direction: column;
gap: 1rem;
Expand Down Expand Up @@ -606,6 +638,13 @@ body {
margin: 0;
}

.developed-by {
text-align: center;
color: #ad2b53;
font-size: 0.85rem;
margin: 0.5rem 0 0 0;
}

.footer p {
margin: 5px 0;
}
Expand Down