-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhome.aspx
More file actions
28 lines (19 loc) · 926 Bytes
/
Copy pathhome.aspx
File metadata and controls
28 lines (19 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.Master" AutoEventWireup="true" CodeBehind="home.aspx.cs" Inherits="ConsumablesPortal.home" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style>
main {
background-image: url('imgs/HaziraNew.jpg');
background-size: cover; /* Ensure the image covers the entire background */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent the image from repeating */
height: 100vh; /* Make sure the body height covers the viewport */
margin: 0; /* Remove default margins */
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="container-fluid">
<main class="px-3">
</main>
</div>
</asp:Content>