Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
taufik-nurrohman committed Dec 16, 2023
1 parent 35c2569 commit 5cd8bce
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .factory/index.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ textarea {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
color: inherit;
display: inline-block;
font-size: 85%;
height: 2rem;
line-height: calc(2rem - 2px); // Minus the border width
outline: 0;
Expand Down Expand Up @@ -545,6 +546,13 @@ body {
// scan the main content, but display the secondary bar as the first column as in the original web design.
order: -1;
width: 150px;
[role='button'],
button,
input,
select,
textarea {
font-size: 100%;
}
> div {
h3 {
font-size: 150%;
Expand Down
25 changes: 25 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ textarea {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
color: inherit;
display: inline-block;
font-size: 85%;
height: 2rem;
line-height: calc(2rem - 2px);
outline: 0;
Expand Down Expand Up @@ -645,6 +646,30 @@ body > div > nav + div > aside {
order: -1;
width: 150px;
}
body > div > header + div > aside [role=button],
body > div > header + div > aside button,
body > div > header + div > aside input[type=button],
body > div > header + div > aside button[type=button],
body > div > header + div > aside input[type=reset],
body > div > header + div > aside button[type=reset],
body > div > header + div > aside input[type=submit],
body > div > header + div > aside button[type=submit],
body > div > header + div > aside input,
body > div > header + div > aside select,
body > div > header + div > aside textarea,
body > div > nav + div > aside [role=button],
body > div > nav + div > aside button,
body > div > nav + div > aside input[type=button],
body > div > nav + div > aside button[type=button],
body > div > nav + div > aside input[type=reset],
body > div > nav + div > aside button[type=reset],
body > div > nav + div > aside input[type=submit],
body > div > nav + div > aside button[type=submit],
body > div > nav + div > aside input,
body > div > nav + div > aside select,
body > div > nav + div > aside textarea {
font-size: 100%;
}
body > div > header + div > aside > div h3,
body > div > nav + div > aside > div h3 {
font-size: 150%;
Expand Down
Loading

0 comments on commit 5cd8bce

Please sign in to comment.