|
1 | 1 | # Applying Styles |
2 | 2 |
|
3 | | -import StructuredLinks from '@site/src/components/StructuredLinks/StructuredLinks.tsx'; |
4 | | - |
5 | | -<StructuredLinks |
6 | | - demoLinks={[ |
7 | | - {name: "Style Demo", url: "https://revisit.dev/study/demo-style"} |
8 | | - ]} |
9 | | - codeLinks={[ |
10 | | - {name: "Style Demo Code", url: "https://github.com/revisit-studies/study/blob/main/public/demo-style"} |
11 | | - ]} |
12 | | - referenceLinks={[ |
13 | | - {name: "UIConfig", url: "../../typedoc/interfaces/UIConfig"}, |
14 | | - {name: "BaseIndividualComponent", url: "../../typedoc/interfaces/BaseIndividualComponent"}, |
15 | | - {name: "BaseResponse", url: "../../typedoc/interfaces/BaseResponse"}, |
16 | | - {name: "CSS Properties", url:"https://developer.mozilla.org/en-US/docs/Web/CSS/Properties"} |
17 | | - ]} |
18 | | -/> |
19 | 3 |
|
20 | 4 | ReVISit provides flexible styling capabilities to customize the appearance of your study components and responses. You can apply styles at three levels: **globally through UI configuration**, at the **component** level, and at the **response** level. |
21 | 5 |
|
@@ -600,4 +584,23 @@ You can also make responses interactive using CSS. For example, you can change t |
600 | 584 | box-shadow: 0 25px 80px #9abddc, 0 0 30px #9abddc, inset 0 0 20px rgba(154, 189, 220, 0.3); |
601 | 585 | } |
602 | 586 | } |
603 | | -``` |
| 587 | +``` |
| 588 | + |
| 589 | + |
| 590 | +<!-- Importing Links --> |
| 591 | +import StructuredLinks from '@site/src/components/StructuredLinks/StructuredLinks.tsx'; |
| 592 | + |
| 593 | +<StructuredLinks |
| 594 | + demoLinks={[ |
| 595 | + {name: "Style Demo", url: "https://revisit.dev/study/demo-style"} |
| 596 | + ]} |
| 597 | + codeLinks={[ |
| 598 | + {name: "Style Demo Code", url: "https://github.com/revisit-studies/study/blob/main/public/demo-style"} |
| 599 | + ]} |
| 600 | + referenceLinks={[ |
| 601 | + {name: "UIConfig", url: "../../typedoc/interfaces/UIConfig"}, |
| 602 | + {name: "BaseIndividualComponent", url: "../../typedoc/interfaces/BaseIndividualComponent"}, |
| 603 | + {name: "BaseResponse", url: "../../typedoc/interfaces/BaseResponse"}, |
| 604 | + {name: "CSS Properties", url:"https://developer.mozilla.org/en-US/docs/Web/CSS/Properties"} |
| 605 | + ]} |
| 606 | +/> |
0 commit comments