Skip to content

Conversation

@goblineer
Copy link

Startrly

Congratulations! You're submitting your assignment.

Comprehension Questions

Feature Feedback
How are CSS Grid & Flexbox similar They are boxy.
Give one example where you choose Flexbox over Grid When I want little boxes to put in a bigger box.
Where did you choose to use CSS Grid and why did you make that decision The big boxes that hold the little one.
What was the hardest part of this assignment, and why was it difficult The pull request template.
What concept did you get the most clarity on through Startrly? I have trouble with following directions and my design abilities are nascent at best.

styles/style.css Outdated
list-style: none;
}

[placeholder]:focus::-webkit-input-placeholder {

Choose a reason for hiding this comment

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

Yay animation!


<section>
<h1>Startrly</h1>
<nav class="navbar">

Choose a reason for hiding this comment

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

All your sectioning attributes could probably be IDs instead of classes, since they're only being used once, but that's just a stylistic thing.

<ul>
<li>
<ul class="answers">
<li class="answerbox">

Choose a reason for hiding this comment

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

Instead of giving the li elements class attributes, could you leave them as-is and just refer to them in the css as belonging to their parent ul? Like .answers li would cover all the list items inside the .answers ul.

styles/style.css Outdated
margin: 0;
color:#43485c;
font-size: 20px;
font-family: 'IBM Plex Sans', sans-serif;

Choose a reason for hiding this comment

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

I'm not sure whether you need to redefine the font-family, since you already did that in the body rule-set.

styles/style.css Outdated
transition: 0.3s linear;
}

.nav li:not(:first-child)not(:last-child){

Choose a reason for hiding this comment

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

Ooh, I like this way of getting at the middle element of the nav.

width: 100%;
}

.welcome a[href] {

Choose a reason for hiding this comment

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

Does this selector do anything other than select the a element? All the a elements have href attributes.


.team {
display: grid;
grid-template: repeat(2, 1fr) / repeat(5, minmax(10px, 1fr));

Choose a reason for hiding this comment

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

I don't know what minmax is but it seems pretty hot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants