63 lines
923 B
CSS
63 lines
923 B
CSS
/* styles.css */
|
|
|
|
/* General page styling */
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Header container styling */
|
|
.header-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20px;
|
|
border-bottom: 1px solid #ccc;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
/* Header images */
|
|
.header-image {
|
|
width: 150px;
|
|
height: auto;
|
|
}
|
|
|
|
/* Specific classes for left/right images */
|
|
.header-image.left {
|
|
float: left;
|
|
}
|
|
|
|
.header-image.right {
|
|
float: right;
|
|
}
|
|
|
|
/* Header details (center section) */
|
|
.header-details {
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Section headings styling */
|
|
h1, h2, h3 {
|
|
color: #333;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Formatted list items styling */
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
ul li {
|
|
margin-bottom: 15px;
|
|
padding-left: 15px;
|
|
border-left: 3px solid #0077cc;
|
|
}
|
|
|
|
ul li strong {
|
|
color: #0077cc;
|
|
}
|