2023-04-09 12:52:32 -05:00
|
|
|
.container {
|
|
|
|
|
display: flex;
|
2023-04-09 15:23:13 -05:00
|
|
|
align-items: flex-start;
|
2023-04-09 12:52:32 -05:00
|
|
|
width: 100%;
|
2023-04-09 15:23:13 -05:00
|
|
|
gap: 2rem;
|
2023-04-09 12:52:32 -05:00
|
|
|
padding: 5rem;
|
2023-04-09 23:13:02 -05:00
|
|
|
max-width: 1450px;
|
2023-04-09 12:52:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 1000px) {
|
|
|
|
|
.container {
|
|
|
|
|
flex-direction: column;
|
2023-04-09 23:52:36 -05:00
|
|
|
align-items: center;
|
2023-04-09 12:52:32 -05:00
|
|
|
justify-content: center;
|
2023-04-09 23:13:02 -05:00
|
|
|
padding: 2.5rem;
|
2023-04-09 15:23:13 -05:00
|
|
|
gap: 1rem;
|
2023-04-09 12:52:32 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container>article {
|
|
|
|
|
flex: 1;
|
2023-04-09 23:13:02 -05:00
|
|
|
min-width: 0;
|
2023-04-09 15:23:13 -05:00
|
|
|
width: 100%;
|
2023-04-09 23:13:02 -05:00
|
|
|
max-width: 600px;
|
2023-04-13 11:16:55 -05:00
|
|
|
position: sticky;
|
2023-04-21 17:54:34 -05:00
|
|
|
top: 5rem;
|
2023-04-13 11:16:55 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-09 14:50:50 -05:00
|
|
|
.container>article>p {
|
|
|
|
|
margin-top: 20px;
|
2023-04-09 23:13:02 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-13 11:16:55 -05:00
|
|
|
.container>article code {
|
2023-04-20 22:39:47 -05:00
|
|
|
color: white;
|
2023-04-09 23:13:02 -05:00
|
|
|
background-color: #0b3766;
|
|
|
|
|
border-radius: 5px;
|
2023-04-09 23:52:36 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-13 23:38:07 -05:00
|
|
|
.container>article>p>code,
|
|
|
|
|
.container>article>table code {
|
|
|
|
|
padding: 0.1rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-09 23:52:36 -05:00
|
|
|
.container>article:nth-child(1)>h1 {
|
2023-04-13 11:16:55 -05:00
|
|
|
color: #ee7203;
|
2023-04-09 23:52:36 -05:00
|
|
|
font-size: 40px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (min-width: 1000px) {
|
2023-04-13 21:34:11 -05:00
|
|
|
.container>article:nth-child(2)>h1:nth-child(1) {
|
2023-04-09 23:52:36 -05:00
|
|
|
padding-top: 75px;
|
|
|
|
|
}
|
2023-04-12 10:54:07 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-13 21:34:11 -05:00
|
|
|
.container>article:nth-child(2)>h1:not(:first-child) {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-13 11:16:55 -05:00
|
|
|
.container>article h2,
|
|
|
|
|
.container>article h3 {
|
2023-04-12 10:54:07 -05:00
|
|
|
margin-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container table>thead>tr>th,
|
|
|
|
|
.container table>tbody>tr>td {
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
border-bottom: 1px solid #0b3766;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container table>thead>tr>th {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #64adac;
|
|
|
|
|
font-weight: bold;
|
2023-04-13 17:22:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container ul {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
list-style: circle;
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
margin-left: 1rem;
|
2023-04-09 12:52:32 -05:00
|
|
|
}
|