mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 20:35:13 -05:00
feat: started working on responsiveness
This commit is contained in:
parent
31be063412
commit
d8ac47c5ee
3 changed files with 108 additions and 60 deletions
|
@ -76,13 +76,13 @@ interviewTitle interview =
|
|||
|
||||
socialMaker : Interview -> Element msg
|
||||
socialMaker interview =
|
||||
row
|
||||
paragraph
|
||||
(paragraphBoldFormat
|
||||
++ [ F.size 18
|
||||
, spacing 5
|
||||
]
|
||||
)
|
||||
[ text "Social:"
|
||||
[ text "Social: "
|
||||
, paragraphLinkFormat
|
||||
{ url = interview.interviewSocial
|
||||
, label = transitionHighlightedLinkHover <| text (formatInterviewSocial interview.interviewSocial)
|
||||
|
@ -92,12 +92,12 @@ socialMaker interview =
|
|||
|
||||
appearanceTitle : Interview -> Element msg
|
||||
appearanceTitle interview =
|
||||
row
|
||||
paragraph
|
||||
(paragraphBoldFormat
|
||||
++ [ F.size 18
|
||||
]
|
||||
)
|
||||
[ text "Appearances:" ]
|
||||
[ text "Appearances: " ]
|
||||
|
||||
|
||||
appearanceMaker : Interview -> Element msg
|
||||
|
@ -156,7 +156,7 @@ episodeMaker appearanceEntry =
|
|||
paragraphLinkFormat
|
||||
{ url = appearanceEntry.appearanceLink
|
||||
, label =
|
||||
row
|
||||
paragraph
|
||||
[ F.size 18
|
||||
]
|
||||
[ text ("#" ++ appearanceEntry.appearanceEpisode ++ ": " ++ appearanceEntry.appearanceTitle)
|
||||
|
@ -265,18 +265,18 @@ dateMaker appearanceEntry =
|
|||
|
||||
subjectMaker : Appearance -> Element msg
|
||||
subjectMaker appearanceEntry =
|
||||
row paragraphBoldFormat
|
||||
paragraph paragraphBoldFormat
|
||||
[ column
|
||||
[ alignTop
|
||||
]
|
||||
[ text "Subjects:"
|
||||
[ text "Subjects: "
|
||||
]
|
||||
]
|
||||
|
||||
|
||||
subjectList : Appearance -> Element msg
|
||||
subjectList appearanceEntry =
|
||||
column
|
||||
paragraph
|
||||
[ spacing 8
|
||||
, width fill
|
||||
, paddingEach
|
||||
|
@ -294,7 +294,7 @@ subjectList appearanceEntry =
|
|||
|
||||
makeSubject : Subjects -> Element msg
|
||||
makeSubject subjects =
|
||||
column
|
||||
paragraph
|
||||
[ E.width fill
|
||||
, alignLeft
|
||||
, paddingEach
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue