-
Notifications
You must be signed in to change notification settings - Fork 21
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
changes required in team page #41
base: main
Are you sure you want to change the base?
Conversation
issue #32 resolved |
</head> | ||
|
||
<body> | ||
<div class="navbar"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nav without <nav>
, really?
|
||
.link { | ||
text-align: center; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think mobile first will be better idea for this one
</head> | ||
|
||
<body> | ||
<iframe src="https://drive.google.com/embeddedfolderview?id=1jQNs70Ji7XrT9DqXGnt5SXXzVx6h15Ec#grid" width="100%" height="500" class="drive"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iframe
should have title
attribute to help screen readers
|
||
<div class="details"> | ||
<div class="row"> | ||
<div id="col1"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, maybe list these items with ul
?
@@ -0,0 +1,70 @@ | |||
#footer { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, don't style by ID 😁
} | ||
|
||
.column { | ||
float: left; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, don't use float
😁
.column { | ||
float: left; | ||
width: 25%; | ||
padding: 0 10px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Paddings in rem
will be a better option
No description provided.