Docs Development
Page Styling
You can add a style definition just for a single page. Be careful not to use class names used by VitePress. Prefixing api3
to all class names is a best practice to protect VitePress classes.
this-smaller-font
css
<!-- styles for this page only -->
<style>
.api3-this-smaller-font{
font-size:x-small;
}
.api3-this-pink-button{
border:#AA336A 1px solid;
padding:5px 8px 5px 8px;
border-radius:.3em;
background-color:#AA336A;
color:white;
font-size:larger;
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14