Skip to content

WIP first start to make an app #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: vite
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use-node-version=22.17.1
71 changes: 35 additions & 36 deletions app/app-styles/app.css
Original file line number Diff line number Diff line change
@@ -1,51 +1,50 @@
/* stylelint-disable import-notation, property-no-vendor-prefix, selector-class-pattern */
@import 'mdbook.css';
@import 'fonts.css';
@import 'variables.css';
@import 'chrome.css';

button.reset {
border: none;
margin: 0;
padding: 0;
width: auto;
overflow: visible;
background: transparent;
color: inherit;
font: inherit;
line-height: normal;
-webkit-font-smoothing: inherit;
-moz-osx-font-smoothing: inherit;
-webkit-appearance: none;
.rfc-grid {
display: flex;
flex-flow: row wrap;
gap: var(--spacing-2);
}

.margin-auto {
margin: auto;
.rfc-card {
background-color: white;
border-radius: var(--radius);
width: 25%;
padding: var(--spacing-2);
}

.p1 {
padding: 0.5em;
.rfc-card img {
width: 100px;
height: 100px;
border-radius: 50px;
}

.p2 {
padding: 1em;
.table {
border-collapse: separate;
border-spacing: 0;
border: 2px solid var(--color-brand);
border-radius: var(--radius);
}

.stage-title {
margin-top: 0.5rem;
margin-bottom: 0;
.table th,
.table td {
padding: var(--spacing-1);
text-align: left;
border-left: none;
border-right: none;
}

ul.chapter {
margin-top: 0;
/* Row borders */
.table tr + tr td {
border-top: 1px solid var(--color-card-border);
}

.rfc-data-table ul {
padding-left: 1em;
/* Optional: top border for the header row */
.table thead tr th {
background-color: var(--color-brand);
border-bottom: 1px solid var(--color-card-border);
color: var(--color-white);
}

.svg-inline--fa {
display: inline-block;
height: 1em;
vertical-align: -0.125em;
/* Optional: remove the last row bottom border if needed */
.table tr:last-child td {
border-bottom: none;
}
Loading
Loading