move css inline to external #6

Manually merged
arian merged 1 commits from pr-css-ext into main 2026-03-06 10:01:32 +00:00
4 changed files with 7 additions and 18 deletions
+4
View File
@@ -0,0 +1,4 @@
body {
background-color: #2B2726;
color: #FFFFFF;
}
+1 -6
View File
@@ -4,12 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error - Upload Music</title>
<style>
body {
background-color: #2B2726;
color: #FFFFFF;
}
</style>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" />
</head>
<body>
<h1>Error</h1>
+1 -6
View File
@@ -4,12 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload Music</title>
<style>
body {
background-color: #2B2726;
color: #FFFFFF;
}
</style>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" />
</head>
<body>
<h1>Upload new File</h1>
+1 -6
View File
@@ -4,12 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Success - Upload Music</title>
<style>
body {
background-color: #2B2726;
color: #FFFFFF;
}
</style>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" type="text/css" />
</head>
<body>
<h1>Success</h1>