Skip to content

Commit

Permalink
[noodles] Fix sizing?
Browse files Browse the repository at this point in the history
  • Loading branch information
lvn authored Jul 11, 2024
1 parent 2efcc06 commit 4221c8e
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions noodles/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,28 @@
max-width: 900px;
color: rgb(55, 53, 47);
}

video {
display: block;
object-fit: cover;
}
}

@media only screen and (max-width: 600px) {
p {
font-size: 20px;
}
}

@media only screen and (min-width: 601px) {
video {
max-width: 350;
}

.source {
max-width: 400;
}
}

body {
line-height: 1.5;
Expand Down Expand Up @@ -85,7 +100,6 @@
border-radius: 3px;
padding: 1.5em;
word-break: break-all;
max-width: 400;
}

.callout {
Expand Down Expand Up @@ -427,12 +441,6 @@
color: #eb5757;
}

video {
display: block;
object-fit: cover;
max-width: 350;
}

.code {
padding: 1.5em 1em;
}
Expand Down

0 comments on commit 4221c8e

Please sign in to comment.