-
Notifications
You must be signed in to change notification settings - Fork 1
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
Nits in Waiting #7
Comments
Talk to me about |
Oh, hello! I didn't realize it was actually going to notify you (your username didn't turn blue). This is the project: https://bliss.js.org - a frontend for SSGs that opens a commit on your Git platform of choice with your content and the necessary YAML pre-filled. To style it I've been using MVP.css, which is just about the coolest classless CSS stylesheet I've found yet. It goes beyond "classless" and ventures onto "semantic". It doesn't have solution for inline / grouped form inputs and I thought you might know how to apply flexbox or grid or some such in a classless way such that I can wrap a group of inputs in Does that make sense? |
My hacky-do: https://github.com/coolaj86/bliss/blob/main/index.html#L30 I also had to hacky-do the form itself to get it to not be uber-narrow:
It's not working particularly well. I think it may be due to padding vs margin. |
It does. Do you have a back-of-the-napkin type design for what you imagine it to look like? I'm sure I can deliver. |
These are the problem areas: They would not be problem areas if
I imagine that I may need to do some sort of I think Ideally I should be able to do something like one of these, and either they need to add up to 100% or add up to whatever they add up to and are adjusted by ratio. <fieldset>
<label style="width: 50%">Name: <input type="text" /></label>
<label style="width: 20%"><input type="checkbox" /> Cool</label>
<label style="width: 30%"><button>Post</submit></label>
</fieldset> <fieldset>
<label style="width: 7rem">Name: <input type="text" /></label>
<label style="width: 3rem"><input type="checkbox" /> Cool</label>
<label style="width: 4rem"><button>Post</submit></label>
</fieldset> |
fieldset
@uniqname<fieldset style="grid-template-areas: 'x x x y'><label><button style="grid-area: x;">...
The text was updated successfully, but these errors were encountered: