CSS Update React
This commit is contained in:
parent
2ca0689167
commit
79acf4aa52
11 changed files with 389 additions and 108 deletions
46
app/styles/doc.css
Normal file
46
app/styles/doc.css
Normal file
|
@ -0,0 +1,46 @@
|
|||
/* styles.css */
|
||||
|
||||
/* Styling for the documentation container */
|
||||
.documentation-container {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.documentation-section {
|
||||
max-width: 900px;
|
||||
height: 80vh;
|
||||
margin: 0 auto;
|
||||
background: #fff;
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 2rem;
|
||||
color: #333;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.5rem;
|
||||
color: #555;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.subsection-title {
|
||||
font-size: 1.25rem;
|
||||
color: #666;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.paragraph {
|
||||
font-size: 1rem;
|
||||
color: #333;
|
||||
margin-bottom: 1.5rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue