Josh Kahlbaugh
@Joshk7All solutions
Room Homepage with Animations
#sass/scssPSubmitted about 1 month agoI'm curious if I could accomplish this same result with transitions or if animation keyframes are the way to go.
Loopstudios with BEM and Sass
#bem#sass/scssPSubmitted about 2 months agoI'd like any tips on how to setup and structure sass projects.
Cube CSS NFT Card
#cube-cssPSubmitted 2 months agoI'd like any tips on how to implement CUBE CSS into a project and if I followed the guidelines correctly.
Vanilla Tic Tac Toe Game
#bemPSubmitted 2 months agoI'd like any recommendations for accessibility improvements.
Accessible BMI calculator
#pure-cssPSubmitted 3 months agoI'd specifically like help with accessibility. If anyone has suggestions on how to make this solution more accessible possibly with screen readers I'd appreciate the help.
Ecommerce Product Page using dialogs
#pure-cssPSubmitted 3 months agoSpecifically, I'd like any suggestions or help on how to make that checkout dialog better. Generally, any tips on how to create modals would be helpful as well.
Accessible News Homepage
#pure-cssPSubmitted 4 months agoI'd like help with styling the dialog element as well as any tips on how to make any elements more accessible by either adding other role attributes or more descriptive labels.
Functional Contact Form
#pure-cssPSubmitted 4 months agoI'd like help with my semantic html.
<label class="name__label" for="given-name" >First Name <span class="required" aria-hidden="true"> *</span> <span class="sr">required</span> </label> ... <span class="error invisible" id="error_given">This field is required</span>
Is this the proper way to add aria labels for screen readers. Specifically for the radio buttons, they're wrapped in a fieldset and each buton is described by the same error. Is this correct?
Lastly, any tips on validation would be appreciated!
FAQ accordion with Accessible Radio Buttons 👀
#pure-cssPSubmitted 5 months agoSpecifically, I'd like help with transitions between open an closed states of the accordion items:
.item__description { max-height: 0; overflow: hidden; transition: 350ms; font: normal 0.875rem/1.5 "Work Sans"; color: var(--pale-purple); } .item__label:has(.radio:checked) + .item__description { margin-top: 1.5rem; max-height: 6.25rem; /* Adjust as needed */ transition: 350ms; }
Interactive Rating with Error Message 🚨
#pure-cssPSubmitted 5 months agoI'd like help with accessibility since I'm doing this challenge as part of the Accessibility Pathway. Any tips on how to make this solution more accessible would be appreciated!
Frontend Quiz with Dark Theme 😈
#pure-cssPSubmitted 5 months agoFirst, I'd like help on loading data into the project. I'm not positive that the way I did it is the best. Second, the conditional styling for the theme is based on toggling a css class on the root element:
const handleThemeClick = (e) => { root.classList.toggle("dark"); };
.dark { --primary: var(--dark-navy); --primary-accent: var(--navy); --secondary: var(--pure-white); --secondary-accent: var(--light-bluish); }
Are there better approaches to this?
Password Generator
#pure-cssPSubmitted 5 months agoAny suggestions on how to generate passwords better or how to solve the problem of styling the range input would be appreciated!
Responsive Tip Calculator 👍
#pure-cssPSubmitted 5 months agoI'd like help specifically with how I could restructure the html for the main form. Additionally, any tips on better practices for writing JavaScript would be appreciated!
Time Tracking Dashboard 🫡
#pure-cssPSubmitted 5 months agoI'd like any suggestions on how to populate the cards data a better way if possible, thanks!
Responsive Newsletter Sign Up
#pure-cssPSubmitted 5 months agoI'm not positive if the background-image set for bullet points is the best way to approach that problem, so any feedback on that would be great.
Also, any tips or pointers for future development on validation logic would help as well!
Responsive Article Preview Card
#pure-cssPSubmitted 6 months agoI'd like help on setting the box shadow for the triangle attached to the popup when you press the share icon on desktop. Will it be any different than attaching a box shadow to any other div?
Also, if anybody has insight into why my icons were being clipped before my fix that would be appreciated!
Responsive meet landing page using CSS Grid and React
#react#pure-cssPSubmitted 6 months agoI'd like help with the bottom footer image. I added media attributes and source tags for different screen sizes, but I'm not positive if I forgot a height or width attribute and whether that's necessary or not.
Responsive Testimonials using CSS grid
#pure-cssPSubmitted 6 months agoI'm not positive if the box-shadow is perfect, so any tips on that would be helpful. Also, I wasn't sure if I needed an h1 tag so I just added a hidden one for accessibility. Let me know if that's good practice.