Files
FACULTATE-HEALTHCARE_MANAGER/frontend/UI/wwwroot/index.html
T
2024-05-30 15:40:13 +03:00

46 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en-en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>HealthcareManagerApp</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"/>
<link href="./Health-Icon-1%20(1).ico" rel="icon" type="image/x-icon"/>
<base href="/"/>
<style>
body {
position: relative;
height: 100vh;
margin: 0;
padding: 0;
background-color: rgba(0, 0, 0, 1);
}
body::before {
content: "";
background-image: url("./background_image.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.3; /* Adjust the opacity as needed */
z-index: -1; /* Ensure the background is behind the content */
}
#app {
position: relative;
z-index: 1; /* Ensure the content is on top */
color: white; /* Ensure text is readable on dark background */
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script src="_framework/blazor.webassembly.js"></script>
</body>
</html>