Files
2025-12-28-ytshorts-gigaproj/Assets/DOJ/index.html

299 lines
7.4 KiB
HTML
Raw Normal View History

2026-01-21 13:48:31 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>U.S. Department of Justice</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: white;
}
/* Top information bar */
.top-bar {
background-color: #1a1a1a;
color: white;
padding: 8px 20px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
}
.top-bar-left {
display: flex;
align-items: center;
gap: 8px;
}
.flag-icon {
width: 16px;
height: 11px;
background-color: #fff;
display: inline-block;
}
.top-bar a {
color: white;
text-decoration: none;
margin-left: 8px;
}
.top-bar a:hover {
text-decoration: underline;
}
.top-bar-right {
display: flex;
gap: 15px;
}
.top-bar-right a {
margin: 0;
}
/* Main header */
.main-header {
background-color: #0c326f;
color: white;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.header-left {
display: flex;
align-items: center;
}
.doj-seal {
height: 70px;
flex-shrink: 0;
}
.doj-seal img {
height: 100%;
width: auto;
display: block;
}
.header-right {
display: flex;
align-items: center;
}
.search-container {
display: flex;
gap: 0;
}
.search-input {
padding: 10px 15px;
border: none;
font-size: 14px;
width: 250px;
}
.search-button {
background-color: #ffc72c;
border: none;
padding: 10px 15px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.search-button::before {
content: "🔍";
font-size: 16px;
}
/* Yellow separator */
.yellow-separator {
height: 4px;
background-color: #ffc72c;
width: 100%;
}
/* Navigation bar */
.nav-bar {
background-color: #2c2c2c;
padding: 0;
}
.nav-links {
display: flex;
justify-content: center;
list-style: none;
gap: 0;
}
.nav-links li {
position: relative;
}
.nav-links a {
color: white;
text-decoration: none;
padding: 15px 20px;
display: flex;
align-items: center;
gap: 5px;
font-size: 14px;
}
.nav-links a:hover {
background-color: #3a3a3a;
}
.nav-links a::after {
content: "▼";
font-size: 10px;
margin-left: 5px;
}
/* Main content area */
.main-content {
min-height: calc(100vh - 250px);
background-color: white;
2026-01-21 13:58:52 -07:00
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.zip-file-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
}
.zip-file-container .upload-button {
align-self: flex-end;
margin-right: calc(50% - 300px);
}
.zip-file-icon {
width: 280px;
height: 315px;
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
border: 5px solid #d63031;
border-radius: 14px;
position: relative;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-top: 25px;
}
.zip-file-icon::before {
content: "📦";
font-size: 130px;
margin-bottom: 20px;
}
.zip-file-label {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
text-align: center;
font-size: 28px;
font-weight: bold;
color: white;
padding: 0 10px;
word-break: break-word;
}
.upload-button {
background-color: #0066cc;
color: white;
border: none;
padding: 27px 75px;
font-size: 30px;
font-weight: bold;
cursor: pointer;
border-radius: 6px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s;
}
.upload-button:hover {
background-color: #0052a3;
}
.upload-button:active {
transform: translateY(1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
2026-01-21 13:48:31 -07:00
}
</style>
</head>
<body>
<!-- Top information bar -->
<div class="top-bar">
<div class="top-bar-left">
<img src="us_flag_small.png" alt="U.S. flag" style="height:11px; width:16px; margin-right:6px; vertical-align:middle;">
<span>An official website of the United States government</span>
<a href="#">Here's how you know▼</a>
</div>
<div class="top-bar-right">
<a href="#">Our Offices</a>
<a href="#">Find Help</a>
<a href="#">Contact Us</a>
</div>
</div>
<!-- Main header -->
<div class="main-header">
<div class="header-left">
<div class="doj-seal">
<img src="doj-main-header-logo.svg" alt="U.S. Department of Justice Seal">
</div>
</div>
<div class="header-right">
<div class="search-container">
<input type="text" class="search-input" placeholder="Search">
<button class="search-button"></button>
</div>
</div>
</div>
<!-- Yellow separator -->
<div class="yellow-separator"></div>
<!-- Navigation bar -->
<nav class="nav-bar">
<ul class="nav-links">
<li><a href="#">About</a></li>
<li><a href="#">Our Work</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Grants</a></li>
<li><a href="#">Employment</a></li>
</ul>
</nav>
<!-- Main content area (blank) -->
2026-01-21 13:58:52 -07:00
<div class="main-content">
<div class="zip-file-container">
<div class="zip-file-icon">
<div class="zip-file-label">EpsteinFiles.zip</div>
</div>
<button class="upload-button">UPLOAD</button>
</div>
</div>
2026-01-21 13:48:31 -07:00
</body>
</html>