Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • yanlsamaβ€’ 170

    @yanlsama

    Posted

    Cool design! πŸŽ‰ Here are some pointers for improvement:

    make use of flexbox to justify and align the the card to the centre of the page, as it currently seems off . You can do something like this:

    * and put the contents there,  
    *then use flexbox on main */
    
    main{
      display: flex;
      justify-content: center;
      align-items: center; 
    }
    
    Doing it this way can also help you to create a correct size for the page too like this:
    
    html,
    body{
      height: 100%;
    }
    
    main{
      min-height: 100%;
    }
    
    1
  • Bilal TΓΌrkmenβ€’ 340

    @bilalturkmen

    Submitted

    • worked hard pixel perfect preview
    • made some color adjustments
    • added toggle switch for dark mode

    i not sure, how the screen readers setting should be for the toggle switch? πŸ™„

    yanlsamaβ€’ 170

    @yanlsama

    Posted

    the change to dark mode doesn't work, but the design is very cool

    1