-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.Master
135 lines (119 loc) · 3.35 KB
/
Home.Master
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Home.master.cs" Inherits="DC.Home" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title>Decoding Covid-19</title>
<%--<link rel="stylesheet" href="HomeStyle.css">--%>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
html {
font-size: 62.5%;
overflow-x: hidden;
}
* {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
outline: none;
border: none;
transition: all .3s cubic-bezier(.38,1.15,.7,1.12);
}
*::selection {
background: darkblue;
color: #fff;
}
header {
background: linear-gradient(to right, #f7971e, #ffd200);
width: 100%;
height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
padding: 2rem;
}
header .logo {
font-size: 4.5rem;
color: white;
font-weight: 800;
font-family: 'Times New Roman', Times, serif;
}
header .logo span {
color: red;
font-size: 5rem;
}
header .navbar a {
font-size: 2.2rem;
margin-left: .7rem;
padding: .5rem 2rem;
border-radius: .5rem;
color: black;
}
header .navbar a.active,
header .navbar a:hover {
color: blue;
color: #fff;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
header.sticky {
background: #fff;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
</style>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
.auto-style1 {
width: 100%;
}
.auto-style2 {
height: 100px;
text-align: center;
font-size: xx-large;
background-color: #FFFFFF;
}
.auto-style4 {
left: 0;
top: 0;
height: 98px;
}
.auto-style5 {
height: 25px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="auto-style1">
<tr>
<td>
<header>
<a href="Index.aspx" class="logo">DECODING C<span class="fas fa-virus"></span>VID</a>
<nav class="navbar">
<a href="Index.aspx"><i class="fas fa-home"></i>Home</a>
<a href="ABout.aspx">About Us</a>
<a href="Contact.aspx">Contact Us</a>
<a class="active" href="Login.aspx">Log In</a>
</nav>
</header>
</td>
</tr>
<tr>
<td class="auto-style5">
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>