Skip to content
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

Remove fomantic site module #29980

Merged
merged 5 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
83 changes: 76 additions & 7 deletions web_src/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,23 @@
--tab-size: 4;
}

html, body {
height: 100%;
font-size: 14px;
}

body {
line-height: 1.4285rem;
font-family: var(--fonts-regular);
color: var(--color-text);
background-color: var(--color-body);
tab-size: var(--tab-size);
display: flex;
flex-direction: column;
overflow-x: visible;
overflow-wrap: break-word;
}

:root * {
--fonts-regular: var(--fonts-override, var(--fonts-proportional)), "Noto Sans", "Liberation Sans", sans-serif, var(--fonts-emoji);
}
Expand Down Expand Up @@ -60,13 +77,64 @@ h6 {
font-weight: var(--font-weight-semibold);
}

body {
color: var(--color-text);
background-color: var(--color-body);
tab-size: var(--tab-size);
display: flex;
flex-direction: column;
overflow-wrap: break-word;
h1,
h2,
h3,
h4,
h5 {
line-height: 1.28571429;
margin: calc(2rem - 0.1428571428571429em) 0 1rem;
padding: 0;
}

h1 {
min-height: 1rem;
font-size: 2rem;
}

h2 {
font-size: 1.71428571rem;
}

h3 {
font-size: 1.28571429rem;
}

h4 {
font-size: 1.07142857rem;
}

h5 {
font-size: 1rem;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child {
margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child {
margin-bottom: 0;
}

p {
margin: 0 0 1em;
line-height: 1.4285;
}

p:first-child {
margin-top: 0;
}

p:last-child {
margin-bottom: 0;
}

table {
Expand Down Expand Up @@ -146,6 +214,7 @@ progress::-moz-progress-bar {
a {
color: var(--color-primary);
cursor: pointer;
text-decoration: none;
text-decoration-skip-ink: all;
}

Expand Down
177 changes: 0 additions & 177 deletions web_src/fomantic/build/semantic.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading