You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

78 lines
1.2 KiB

/* Add your custom CSS here */
/* FAQ Styling */
.faq-answer {
background-color: #f8f9fa;
border-left: 4px solid #5c6bc0;
padding: 15px 20px;
margin-bottom: 20px;
border-radius: 4px;
}
.error-message {
background-color: #ffebee;
border-left: 4px solid #f44336;
padding: 10px 15px;
margin: 10px 0;
font-family: monospace;
white-space: pre-wrap;
font-size: 0.9em;
border-radius: 4px;
}
.code-steps {
margin: 15px 0;
}
.code-steps p {
margin-bottom: 5px;
}
details {
margin-bottom: 10px;
padding: 10px;
background-color: #e3f2fd;
border-radius: 4px;
}
summary {
cursor: pointer;
padding: 8px 0;
}
details[open] summary {
margin-bottom: 10px;
}
h3 {
margin-top: 30px;
margin-bottom: 15px;
}
/* Add smooth transition for collapsible sections */
details summary {
transition: margin 0.3s ease;
}
/* Styling for code blocks within FAQ */
.faq-answer pre {
border-radius: 4px;
margin: 10px 0;
}
/* Add styling for list items */
.faq-answer ul {
padding-left: 25px;
}
.faq-answer ul li {
margin: 5px 0;
}
/* Add horizontal rule styling */
hr {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
margin: 25px 0;
}