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

Styled font weight and response box #25

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 2 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
17 changes: 16 additions & 1 deletion static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ body, input {
-webkit-font-smoothing: subpixel-antialiased;
font-family:-apple-system-font, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
text-rendering: optimizeLegibility;
font-weight:200;
font-weight:300;
Solance marked this conversation as resolved.
Show resolved Hide resolved
}

body {
Expand Down Expand Up @@ -48,6 +48,16 @@ body {
padding-top:18px;
}

#response {
background-color: #e6eaff;
border: 1px solid #716f6f;
padding-right: 20px;
padding-left: 5px;
}
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is what it looks like - I'm not sure the italic+bold looks good on the Hebrew text, also not sure about the color (though I do like the dark mode color). Wdyt?

image

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(any ideas on how to make the design cleaner?)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On my machine (different browsers) it looks different, only italic.

Screenshot 2022-03-22 at 22 40 52

The color is the same one as in the English version, but I will try to think of a better one, as well as some cleaner design (I'm a bit limited here but will try!).

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now there's no background in light-mode
image


#response p {
font-style: italic;
}
Solance marked this conversation as resolved.
Show resolved Hide resolved

th {
padding-left: 3em;
Expand Down Expand Up @@ -298,4 +308,9 @@ body.dark .progress-container {

body.dark .implicita {
color: #FFF;
}

body.dark #response {
background-color: #282e4f;
border: 1px solid #eeeeee;
}