Skip to content

Commit

Permalink
Update doc best-practices
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuscal-Ashman committed Jan 3, 2025
1 parent b1fd866 commit cb8c011
Showing 1 changed file with 127 additions and 127 deletions.
254 changes: 127 additions & 127 deletions docs/PLatform/api-integration/best-practices/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,44 +59,44 @@ When integrating with the Basiq API, there are some best practices that play a c

<style jsx>
{`
.doc-section {
padding: 20px;
background: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 10px 0;
}

.doc-highlight {
font-size: 1.1em;
color: #333;
background: #eef7fe;
padding: 10px;
border-radius: 6px;
margin-bottom: 16px;
}

.doc-list {
list-style: none;
padding-left: 0;
margin: 0;
}

.doc-list li {
font-size: 1em;
color: #555;
padding: 8px 0;
border-bottom: 1px solid #eee;
}

.doc-list li:last-child {
border-bottom: none;
}

.doc-list strong {
color: #0073e6;
}
`}
.doc-section {
padding: 20px;
background: #f9f9f9;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin: 10px 0;
}

.doc-highlight {
font-size: 1.1em;
color: #333;
background: #eef7fe;
padding: 10px;
border-radius: 6px;
margin-bottom: 16px;
}

.doc-list {
list-style: none;
padding-left: 0;
margin: 0;
}

.doc-list li {
font-size: 1em;
color: #555;
padding: 8px 0;
border-bottom: 1px solid #eee;
}

.doc-list li:last-child {
border-bottom: none;
}

.doc-list strong {
color: #0073e6;
}
`}
</style>

<Columns layout="auto" className="documentation-columns">
Expand Down Expand Up @@ -175,35 +175,35 @@ When integrating with the Basiq API, there are some best practices that play a c

<style jsx>
{`
.documentation-columns {
gap: 20px;
}

.highlight {
color: #0073e6;
font-weight: bold;
}

.warning {
background: #ffefef;
border-left: 5px solid #f44336;
padding: 10px;
margin: 10px 0;
}

h3, h4 {
margin-top: 0;
}

ul {
list-style: disc;
padding-left: 20px;
}

p {
margin: 0 0 10px;
}
`}
.documentation-columns {
gap: 20px;
}

.highlight {
color: #0073e6;
font-weight: bold;
}

.warning {
background: #ffefef;
border-left: 5px solid #f44336;
padding: 10px;
margin: 10px 0;
}

h3, h4 {
margin-top: 0;
}

ul {
list-style: disc;
padding-left: 20px;
}

p {
margin: 0 0 10px;
}
`}
</style>

<blockquote className="warning">
Expand Down Expand Up @@ -256,7 +256,7 @@ When integrating with the Basiq API, there are some best practices that play a c
<h3 className="card-title">Secure Data Storage</h3>

<p className="card-description">
Partners should implement a secure data storage system to store necessary user information, with encryption and restricted access for authorized users only.
You should implement a secure data storage system to store necessary user information, with encryption and restricted access for authorized users only.
</p>
</div>
</div>
Expand All @@ -266,65 +266,65 @@ When integrating with the Basiq API, there are some best practices that play a c

<style jsx>
{`
.documentation-columns {
gap: 20px;
margin-top: 30px;
}

.interactive-card {
max-width: 360px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
cursor: pointer;
}

.interactive-card:hover {
transform: translateY(-10px);
}

.card-content {
text-align: center;
}

.card-icon {
font-size: 48px;
color: #0073e6;
margin-bottom: 20px;
}

.card-title {
font-size: 1.4em;
color: #333;
margin-bottom: 16px;
font-weight: bold;
}

.card-description {
font-size: 1em;
color: #666;
line-height: 1.5;
margin-bottom: 20px;
}

.learn-more-button {
padding: 10px 20px;
background-color: #0073e6;
color: white;
font-size: 1em;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.learn-more-button:hover {
background-color: #005bb5;
}
`}
.documentation-columns {
gap: 20px;
margin-top: 30px;
}

.interactive-card {
max-width: 360px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
cursor: pointer;
}

.interactive-card:hover {
transform: translateY(-10px);
}

.card-content {
text-align: center;
}

.card-icon {
font-size: 48px;
color: #0073e6;
margin-bottom: 20px;
}

.card-title {
font-size: 1.4em;
color: #333;
margin-bottom: 16px;
font-weight: bold;
}

.card-description {
font-size: 1em;
color: #666;
line-height: 1.5;
margin-bottom: 20px;
}

.learn-more-button {
padding: 10px 20px;
background-color: #0073e6;
color: white;
font-size: 1em;
border: none;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.learn-more-button:hover {
background-color: #005bb5;
}
`}
</style>

<br />
Expand Down

0 comments on commit cb8c011

Please sign in to comment.