Skip to content
Snippets Groups Projects
Commit 5c09365b authored by Chen Liang's avatar Chen Liang
Browse files

Upload New File

parent 74a2dbc2
No related branches found
No related tags found
2 merge requests!83Update the front end page of approve and reject the requests from care homes,!50Draft: Lc
book.css 0 → 100644
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #e0f7fa, #ffffff);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 0;
}
.container {
background-color: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
text-align: center;
box-sizing: border-box;
}
header {
margin-bottom: 30px;
}
h1 {
font-size: 32px;
color: #333;
}
p {
font-size: 18px;
color: #666;
}
.form-group {
margin-bottom: 20px;
text-align: left;
}
label {
font-size: 16px;
color: #555;
margin-bottom: 8px;
display: block;
}
input {
width: 100%;
padding: 14px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f9f9f9;
margin-top: 6px;
transition: border-color 0.3s ease;
}
input:focus {
border-color: #4CAF50;
outline: none;
background-color: #fff;
}
button {
width: 100%;
padding: 16px;
background-color: #4CAF50;
color: white;
font-size: 18px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
}
button:active {
background-color: #3e8e41;
}
/* Responsive design */
@media (max-width: 600px) {
.container {
padding: 20px;
width: 100%;
}
h1 {
font-size: 28px;
}
p {
font-size: 16px;
}
button {
font-size: 16px;
padding: 14px;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment