add basic presentation
This commit is contained in:
parent
bb346995ea
commit
a8a942f4d1
6 changed files with 85 additions and 10 deletions
BIN
src/assets/images/portrait.jpg
Normal file
BIN
src/assets/images/portrait.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 264 KiB |
|
|
@ -4,6 +4,9 @@
|
|||
html {
|
||||
background-color: var(--prj-bg);
|
||||
color: var(--prj-text);
|
||||
|
||||
/* Update font size based on screen width, source: https://matthewjamestaylor.com/responsive-font-size */
|
||||
font-size: calc(15px + 0.390625vw);
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,42 @@
|
|||
:root {
|
||||
--prj-spacing-1: 0.25rem;
|
||||
--prj-spacing-2: 0.5rem;
|
||||
--prj-spacing-3: 1rem;
|
||||
--prj-spacing-4: 2rem;
|
||||
--prj-spacing-5: 3rem;
|
||||
}
|
||||
|
||||
.hstack {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gap-1 {
|
||||
gap: var(--prj-spacing-1);
|
||||
}
|
||||
|
||||
.gap-2 {
|
||||
gap: var(--prj-spacing-2);
|
||||
}
|
||||
|
||||
.gap-3 {
|
||||
gap: var(--prj-spacing-3);
|
||||
}
|
||||
|
||||
.gap-4 {
|
||||
gap: var(--prj-spacing-4);
|
||||
}
|
||||
|
||||
.gap-5 {
|
||||
gap: var(--prj-spacing-5);
|
||||
}
|
||||
|
||||
.list-unstyle {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.text-justify {
|
||||
text-align: justify;
|
||||
text-justify: inter-word;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue