[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:
@@ -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;
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user