58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
/*
|
|
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
|
|
*/
|
|
/*
|
|
Created on : 15 sept. 2025, 14:59:25
|
|
Author : steve.maingana
|
|
*/
|
|
:root {
|
|
--primary-color: #cc0000;
|
|
--secondary-color: #990000;
|
|
--font-style: "Comic Relief", system-ui;
|
|
}
|
|
body {
|
|
background-color: whitesmoke;
|
|
margin: 0;
|
|
font-style: var(--font-style);
|
|
}
|
|
nav {
|
|
background-color: var(--primary-color);
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 1.2rem;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
nav ul {
|
|
color: white;
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
nav a {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
form {
|
|
text-align: center;
|
|
margin: 8rem;
|
|
padding: 2rem;
|
|
background-color: var(--secondary-color);
|
|
border-radius: 8px;
|
|
border-style: none;
|
|
}
|
|
|
|
form label {
|
|
margin: auto;
|
|
padding-bottom: 1rem;
|
|
color: white;
|
|
font-weight: bold;
|
|
} |