/*
Theme Name: Smoke Stream
Theme URI: http://example.com/smoke-stream
Author: Your Name
Author URI: http://example.com
Description: A customizable WordPress theme that functions similarly to YouTube.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smoke-stream-theme
*/
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #050913; /* Ultra neon purple background */
color: #ffffff; /* White text color */
}
header, footer {
background-color: #2A2E36; /* Darker shade for header and footer */
color: #fff;
padding: 20px;
}
header a, footer a {
color: #6600FF; /* Ultra neon purple links */
text-decoration: none;
}
.main-content {
padding: 20px;
}
.widget-title {
font-size: 1.5em;
margin-bottom: 10px;
}
.video-grid {
display: flex;
flex-wrap: wrap;
}
.video-item {
width: 30%;
margin: 1.5%;
background: #f9f9f9;
padding: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.video-item img {
width: 100%;
height: auto;
}