81 lines
1.7 KiB
CSS
81 lines
1.7 KiB
CSS
/* This program has been developed by students from the bachelor Computer Science at Utrecht
|
|
University within the Software Project course.
|
|
© Copyright Utrecht University (Department of Information and Computing Sciences)
|
|
*/
|
|
|
|
.manualContainer {
|
|
width: 100%;
|
|
max-width: 800px;
|
|
margin: 4rem auto;
|
|
padding: 2rem;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
.manualHeader h1 {
|
|
font-size: 2.2rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.buttonStack {
|
|
display: flex;
|
|
flex-direction: column; /* Stacks the manual sections vertically */
|
|
gap: 3rem;
|
|
margin-top: 3rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.manualEntry {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.manualEntry h3 {
|
|
margin: 0;
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.manualEntry p {
|
|
color: #666;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.downloadBtn {
|
|
display: inline-block;
|
|
background-color: #ffffff; /* White background as requested */
|
|
color: #000;
|
|
padding: 1rem 2rem;
|
|
border-radius: 50px;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
font-size: 1.1rem;
|
|
width: 280px; /* Fixed width for uniform appearance */
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
|
|
transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
|
|
}
|
|
|
|
.downloadBtn:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
|
|
background-color: #247284; /* Teal hover as requested */
|
|
color: #ffffff; /* Text turns white on teal for better contrast */
|
|
}
|
|
|
|
.dateBadge {
|
|
display: inline-block;
|
|
margin-top: 1rem;
|
|
padding: 0.4rem 1rem;
|
|
background-color: #f0f0f0;
|
|
border-radius: 4px;
|
|
font-size: 0.85rem;
|
|
color: #888;
|
|
}
|
|
|
|
.divider {
|
|
margin-top: 4rem;
|
|
border: 0;
|
|
border-top: 1px solid #eee;
|
|
width: 60%;
|
|
} |