mirror of
https://github.com/PR0M3TH3AN/Archivestr.git
synced 2025-09-08 07:19:03 +00:00
update
This commit is contained in:
BIN
Archivestr.afdesign
Normal file
BIN
Archivestr.afdesign
Normal file
Binary file not shown.
BIN
src/Archivestr.png
Normal file
BIN
src/Archivestr.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
@@ -9,10 +9,14 @@
|
|||||||
<title>Archivestr</title>
|
<title>Archivestr</title>
|
||||||
<meta name="description" content="Archivestr: A Nostr Archive Creation, Browser, and Broadcaster Tool">
|
<meta name="description" content="Archivestr: A Nostr Archive Creation, Browser, and Broadcaster Tool">
|
||||||
<link rel="stylesheet" href="styles.css?v=1.0">
|
<link rel="stylesheet" href="styles.css?v=1.0">
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap" rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Archivestr</h1>
|
<div class="logo-container">
|
||||||
|
<img src="Archivestr.png" alt="Archivestr Logo" class="logo">
|
||||||
|
<h1>ARCHIVESTR</h1>
|
||||||
|
</div>
|
||||||
<p>A Nostr Archive Creation, Browser, and Broadcaster Tool</p>
|
<p>A Nostr Archive Creation, Browser, and Broadcaster Tool</p>
|
||||||
|
|
||||||
<!-- Navigation -->
|
<!-- Navigation -->
|
||||||
|
@@ -32,6 +32,7 @@ body {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
text-align: center; /* Ensures content is centered */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Tooltip styles */
|
/* Tooltip styles */
|
||||||
@@ -94,11 +95,19 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Typography */
|
/* Typography */
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: center;
|
font-family: 'Merriweather', serif; /* Applies Merriweather font */
|
||||||
margin-bottom: 20px;
|
font-weight: 700; /* Ensures the font weight is bold */
|
||||||
font-size: 32px;
|
font-size: 36px; /* Adjusts the font size as needed */
|
||||||
color: var(--text-primary);
|
letter-spacing: 2px; /* Adds spacing between letters for a strong look */
|
||||||
|
text-align: center; /* Centers the text */
|
||||||
|
text-transform: uppercase; /* Transforms text to uppercase */
|
||||||
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds subtle shadow */
|
||||||
|
line-height: 1.2; /* Adjusts line height */
|
||||||
|
margin-top: 10px; /* Adjusts top margin to align with the logo */
|
||||||
|
margin-bottom: 10px; /* Adjusts bottom margin for spacing */
|
||||||
|
color: var(--text-primary); /* Maintains existing text color */
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
@@ -580,11 +589,6 @@ footer {
|
|||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes spin {
|
|
||||||
0% { transform: rotate(0deg); }
|
|
||||||
100% { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
|
|
||||||
.status-section p {
|
.status-section p {
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
color: #666;
|
color: #666;
|
||||||
@@ -642,5 +646,30 @@ footer {
|
|||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
color: #2c5282;
|
color: #2c5282;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Responsive Adjustments for Logo */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.logo {
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.logo {
|
||||||
|
width: 50px;
|
||||||
|
height: 50px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Logo Styling */
|
||||||
|
.logo {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
object-fit: contain;
|
||||||
|
margin: 0 auto 20px auto;
|
||||||
|
display: block; /* Ensures block-level behavior for centering */
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user