Update dashboard CSS to use new color scheme matching visual identity, replacing CSS variables with specific color values. Improved button hover state with background transition instead of opacity. Expanded layout.js with additional application sections including dashboard, editor, player, and settings to support new navigation structure.
19 lines
401 B
HTML
19 lines
401 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>News</title>
|
|
<link rel="stylesheet" href="../css/global.css">
|
|
<link rel="stylesheet" href="news.css">
|
|
</head>
|
|
<body>
|
|
<div id="main-content">
|
|
<div class="content-section active">
|
|
<div class="panel">
|
|
<!-- News content will go here -->
|
|
<h1>News</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="news.js"></script>
|
|
</body>
|
|
</html>
|