Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>News Feed Hub</title> | |
<style> | |
body { | |
font-family: 'Arial', sans-serif; | |
margin: 0; | |
padding: 20px; | |
background-color: #f5f5f5; /* Light grey background from screenshot */ | |
color: #333; | |
} | |
h1 { | |
text-align: center; | |
color: #2c3e50; | |
margin-bottom: 20px; | |
font-size: 2em; | |
} | |
.search-container { | |
text-align: center; | |
margin: 20px 0; | |
} | |
.search-bar { | |
width: 50%; | |
padding: 12px; | |
font-size: 16px; | |
border: 2px solid #3498db; /* Blue from screenshot */ | |
border-radius: 25px; | |
box-shadow: 0 2px 5px rgba(0,0,0,0.1); | |
outline: none; | |
transition: border-color 0.3s; | |
background-color: white; | |
} | |
.search-bar:focus { | |
border-color: #2980b9; | |
} | |
.category-section { | |
margin: 30px 0; | |
} | |
.category-title { | |
background-color: #3498db; /* Blue header from screenshot */ | |
color: white; | |
padding: 10px; | |
border-radius: 5px; | |
font-size: |