Skip to content

Ports -- Kate#45

Open
goblineer wants to merge 3 commits into
Ada-C11:masterfrom
goblineer:master
Open

Ports -- Kate#45
goblineer wants to merge 3 commits into
Ada-C11:masterfrom
goblineer:master

Conversation

@goblineer
Copy link
Copy Markdown

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.

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

[placeholder]:focus::-webkit-input-placeholder {
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Yay animation!

Comment thread index.html

<section>
<h1>Startrly</h1>
<nav class="navbar">
Copy link
Copy Markdown

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.

Comment thread index.html
<ul>
<li>
<ul class="answers">
<li class="answerbox">
Copy link
Copy Markdown

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.

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

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.

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

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

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.

Comment thread styles/style.css
width: 100%;
}

.welcome a[href] {
Copy link
Copy Markdown

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.

Comment thread styles/style.css

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

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