Untitled
unknown
plain_text
a year ago
964 B
6
Indexable
.content-container {
display: flex;
justify-content: space-between;
padding: 20px;
font-family: Arial, sans-serif;
background-color: #F0F0F0; /* Adjust color as needed */
}
.left-section, .right-section {
flex: 1;
padding: 20px;
}
.left-section h1, .right-section h2 {
color: #333;
margin-bottom: 10px;
}
.left-section p {
font-size: 14px;
color: #666;
margin-bottom: 20px;
}
.left-section button {
padding: 10px 20px;
background-color: #444;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.left-section button:hover {
background-color: #555;
}
.right-section ul {
list-style: none;
padding: 0;
}
.right-section li {
padding: 5px 0;
border-left: 3px solid #444;
margin-left: 20px;
padding-left: 5px;
}
.right-section li:not(:first-child) {
margin-top: 10px;
}
Editor is loading...
Leave a Comment