[code] implemented more CSS code for project in styles.css, namely body, h1-h3 and styling for the placeholder text on the inputs, have also added background colour and font family parameters for project, added further code to home.html as well.

This commit is contained in:
2026-04-21 23:39:28 +01:00
parent f65b5eb19c
commit 2cb7d1b6ca
2 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
body {
font-family: Arial, Helvetica, sans-serif;
color: black;
background-color: white;
}
p {
font-size: 0.5rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1rem;
}
input[type=text] {
font-family: Arial, Helvetica, sans-serif;
}

View File

@@ -3,12 +3,13 @@
<head> <head>
<title>Login | Sentinel</title> <title>Login | Sentinel</title>
<link rel="icon" type="image/x-icon" href="/assets/icons/favicon.ico"> <link rel="icon" type="image/x-icon" href="/assets/icons/favicon.ico">
<link rel="stylesheet" href="/css/styles.css">
</head> </head>
<body> <body>
<div class="loginPane"> <div class="loginPane">
<div class="loginHeader"> <div class="loginHeader">
<h1>Login</h1> <h1>Login</h1>
<h4>Please enter your login credentials below</h4> <h3>Please enter your login credentials below</h3>
</div> </div>
<div class="loginForm"> <div class="loginForm">
<form> <form>