Style reviews
This commit is contained in:
parent
4a261ec67a
commit
b41b2bac3d
7 changed files with 56 additions and 12 deletions
|
|
@ -30,7 +30,7 @@ I really enjoyed how the dynamic between the artist prisoner character (Benicio
|
|||
|
||||
### The Art
|
||||
|
||||
Another moment I enjoyed was the discussion about modern art. There's a funny commentary on the idea that "a third grader could have made this", wherein they discuss his arts validity and make the claim that because he has techinical prowess (the ability to draw a realistic picture of a bird) his more modern style is somehow valid. The sort of mental gymnastics that the art collectors go through to justify why the art is the next best thing works as a commentary on art in general in a way I liked.
|
||||
Another moment I enjoyed was the discussion about modern art. There's a funny commentary on the idea that "a third grader could have made this", wherein they discuss his arts validity and make the claim that because he has technical prowess (the ability to draw a realistic picture of a bird) his more modern style is somehow valid. The sort of mental gymnastics that the art collectors go through to justify why the art is the next best thing works as a commentary on art in general in a way I liked.
|
||||
|
||||
### The Revolutionary Students
|
||||
|
||||
|
|
@ -38,8 +38,8 @@ I have quite a soft spot for chess, so the sections of the magazine following th
|
|||
|
||||
### The Dinner Party Kidnapping
|
||||
|
||||
I felt the storyline where the author recounts the dinner party kidnapping was honestly the weakest part of the film. For me it's a combination of not really liking that cartoon style (and this is partially why I haven't made it through Isle of Dogs yet dispite that on the surface seeming like a perfect fit for me.) The other issue I have with it was pointed out in a review I read, which I will paraphrase as being too many layers deep.
|
||||
I felt the storyline where the author recounts the dinner party kidnapping was honestly the weakest part of the film. For me it's a combination of not really liking that cartoon style (and this is partially why I haven't made it through Isle of Dogs yet despite that on the surface seeming like a perfect fit for me.) The other issue I have with it was pointed out in a review I read, which I will paraphrase as being too many layers deep.
|
||||
|
||||
The story is told in the setting of a section of the magazine, but in retrospective as spoken by the author on the set of a talk show. Then we have the actual story which has aspects of live action and cartoon. The cartoon scenes feel nested within the live action for a total depth 4 levels removed from the viewer. It just makes things a little difficult to follow. That style of storytelling can work: I loved _If on a Winter's Night a Traveler_ by _Italio Calvino_ which relies heavily on this nesting of view points, but the first chapter of that book is incredibly jarring as you get accustomed to the style.
|
||||
|
||||
I think because this section stands alone and is tonally different from the rest of the movie, you don't have time to get over that jarring feeling to orient yourself. I think as a stand alone short it might work, and it's just it's presence in this larger narrative that makes it feel especially awkard tonally. For me, this discordance is the main reason I feel this movie is more of a 4/5 than a perfect 5/7.
|
||||
I think because this section stands alone and is tonally different from the rest of the movie, you don't have time to get over that jarring feeling to orient yourself. I think as a stand alone short it might work, and it's just it's presence in this larger narrative that makes it feel especially awkward tonally. For me, this discordance is the main reason I feel this movie is more of a 4/5 than a perfect 5/7.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
.quicklook {
|
||||
max-width: 600px;
|
||||
flex-basis: 600px;
|
||||
border-radius: 16px;
|
||||
background: #F4C2CD;
|
||||
color: #702E2E;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎥</text></svg>">
|
||||
<link rel="stylesheet" href="/film/style.css">
|
||||
<link rel="stylesheet" href="/film/card.css">
|
||||
<link rel="stylesheet" href="/film/review.css">
|
||||
<link rel="stylesheet" href="/film/quick_look.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
{{ define "main" }}
|
||||
<article class="review">
|
||||
<header>
|
||||
<h1>{{- .Title -}}</h1>
|
||||
<header class="review-header">
|
||||
{{ if .Params.image }}
|
||||
<div class="review-poster">
|
||||
<img src={{.Params.image}} alt="Poster">
|
||||
</div>
|
||||
{{ end }}
|
||||
<h1>{{- .Title -}}</h1>
|
||||
{{ partial "quicklook.html" . }}
|
||||
</header>
|
||||
<div>
|
||||
<div class="core-review">
|
||||
{{- .Content -}}
|
||||
</div>
|
||||
</article>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
.quicklook {
|
||||
max-width: 600px;
|
||||
flex-basis: 600px;
|
||||
border-radius: 16px;
|
||||
background: #F4C2CD;
|
||||
color: #702E2E;
|
||||
|
|
|
|||
46
static/review.css
Normal file
46
static/review.css
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
.review {
|
||||
max-width: 800px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.review-header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 30px;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.review-header h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.review-poster {
|
||||
aspect-ratio: 1/1;
|
||||
flex-basis: 200px;
|
||||
max-width: 200px;
|
||||
overflow: hidden;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.review-poster > img {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.core-review {
|
||||
margin: 30px 10px;
|
||||
}
|
||||
.core-review p {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.core-review h2,h3,h4,h5 {
|
||||
margin-top: 30px;
|
||||
margin-bottom: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
|
@ -212,6 +212,3 @@ a:hover {
|
|||
padding: 10px;
|
||||
}
|
||||
|
||||
.review {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue