mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: version 1 done?
This commit is contained in:
parent
d1ba50abd8
commit
76fa1ff381
11 changed files with 114 additions and 115 deletions
|
@ -31,6 +31,11 @@ headerFontSizeSmall =
|
|||
F.size 18
|
||||
|
||||
|
||||
smallTextFontSize : Attr decorative msg
|
||||
smallTextFontSize =
|
||||
F.size 12
|
||||
|
||||
|
||||
renderCodeLine : SyntaxColors -> List (Element msg) -> Element msg
|
||||
renderCodeLine colors elements =
|
||||
paragraph
|
||||
|
|
|
@ -140,7 +140,7 @@ tocView toc =
|
|||
]
|
||||
[ paragraph
|
||||
[ F.bold
|
||||
, F.size 23
|
||||
, headerFontSizeBig
|
||||
, F.center
|
||||
, width fill
|
||||
, F.color colourTheme.textLightOrange
|
||||
|
@ -167,7 +167,7 @@ tocView toc =
|
|||
, el
|
||||
[ F.alignLeft
|
||||
, E.width fill
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, alignTop
|
||||
]
|
||||
<|
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
module Config.Helpers.Price exposing (..)
|
||||
|
||||
import Config.Helpers.Format exposing (headerFontSizeBig)
|
||||
import Config.Style.Colour exposing (colourTheme)
|
||||
import Config.Style.Glow exposing (glowDeepDarkGrey)
|
||||
import Config.Style.Transitions exposing (hoverPageButtonDeepDarkOrange, transitionStyleMedium)
|
||||
import Element as E exposing (..)
|
||||
import Element.Background as B exposing (color)
|
||||
import Element.Border as D exposing (rounded)
|
||||
import Element.Font as F exposing (center)
|
||||
import Config.Style.Glow exposing (glowDeepDarkGrey)
|
||||
|
||||
|
||||
buyButton : String -> String -> Element msg
|
||||
|
@ -23,7 +24,7 @@ buyButton price url =
|
|||
el
|
||||
[ B.color colourTheme.textDarkOrange
|
||||
, D.rounded 30
|
||||
, F.size 25
|
||||
, headerFontSizeBig
|
||||
, F.bold
|
||||
, transitionStyleMedium
|
||||
, hoverPageButtonDeepDarkOrange
|
||||
|
|
|
@ -4,6 +4,8 @@ import Config.Data.Identity exposing (pageNames)
|
|||
import Config.Helpers.Format
|
||||
exposing
|
||||
( headerFontSizeBig
|
||||
, headerFontSizeMedium
|
||||
, headerFontSizeSmall
|
||||
, paragraphFontSize
|
||||
, paragraphSpacing
|
||||
)
|
||||
|
@ -18,7 +20,6 @@ import Element as E exposing (..)
|
|||
import Element.Background as B
|
||||
import Element.Border as D
|
||||
import Element.Font as F
|
||||
import Config.Helpers.Format exposing (headerFontSizeMedium)
|
||||
|
||||
|
||||
bodyFormat : List (Attribute msg)
|
||||
|
@ -83,7 +84,7 @@ highlightedBlockMaker title items =
|
|||
]
|
||||
[ paragraph
|
||||
[ F.bold
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
[ text title ]
|
||||
, column
|
||||
|
@ -99,7 +100,13 @@ highlightedBlockMaker title items =
|
|||
[ width <| px 30
|
||||
, alignTop
|
||||
]
|
||||
[ el [ alignRight, F.size 18 ] <| text "• " ]
|
||||
[ el
|
||||
[ alignRight
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
<|
|
||||
text "• "
|
||||
]
|
||||
, column
|
||||
[ spacing 10
|
||||
, width fill
|
||||
|
@ -107,7 +114,7 @@ highlightedBlockMaker title items =
|
|||
]
|
||||
[ paragraph
|
||||
[ width fill
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
, F.alignLeft
|
||||
]
|
||||
[ row
|
||||
|
@ -145,7 +152,13 @@ bulletPointMaker items =
|
|||
[ width <| px 30
|
||||
, alignTop
|
||||
]
|
||||
[ el [ alignRight, F.size 18 ] <| text "• " ]
|
||||
[ el
|
||||
[ alignRight
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
<|
|
||||
text "• "
|
||||
]
|
||||
, column
|
||||
[ spacing 10
|
||||
, width fill
|
||||
|
@ -153,7 +166,7 @@ bulletPointMaker items =
|
|||
]
|
||||
[ paragraph
|
||||
[ width fill
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
, F.alignLeft
|
||||
]
|
||||
[ el
|
||||
|
@ -194,7 +207,7 @@ numberMaker items =
|
|||
]
|
||||
[ paragraph
|
||||
[ width fill
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
, F.alignLeft
|
||||
]
|
||||
[ el
|
||||
|
|
|
@ -188,7 +188,7 @@ instructionBody =
|
|||
]
|
||||
[ paragraph
|
||||
[ width fill
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
, F.alignLeft
|
||||
]
|
||||
term
|
||||
|
|
|
@ -286,18 +286,16 @@ propositionTitleMaker argument =
|
|||
column
|
||||
[ E.width fill, E.alignLeft ]
|
||||
[ paragraph
|
||||
([ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
]
|
||||
++ [ F.size 18 ]
|
||||
)
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, headerFontSizeSmall
|
||||
, F.bold
|
||||
]
|
||||
[ text argument.propositionTitle
|
||||
|> el
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.regular
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
]
|
||||
]
|
||||
]
|
||||
|
@ -336,15 +334,12 @@ reductioMaker =
|
|||
column
|
||||
[ E.alignTop, E.alignLeft ]
|
||||
[ paragraph
|
||||
([ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
]
|
||||
++ [ F.size 18
|
||||
, infoSpacing
|
||||
]
|
||||
)
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, headerFontSizeSmall
|
||||
, F.bold
|
||||
, infoSpacing
|
||||
]
|
||||
[ el
|
||||
[ tooltip
|
||||
"This is the position from which the reductio ad absurdum is derived."
|
||||
|
@ -359,14 +354,11 @@ reductioMakerTitle : String -> Element msg
|
|||
reductioMakerTitle reductio =
|
||||
column [ E.width fill, E.alignLeft ]
|
||||
[ paragraph
|
||||
([ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
]
|
||||
++ [ F.size 16
|
||||
, spacing 3
|
||||
]
|
||||
)
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, spacing 3
|
||||
]
|
||||
[ text reductio ]
|
||||
]
|
||||
|
||||
|
@ -394,15 +386,13 @@ summaryMaker =
|
|||
, E.alignLeft
|
||||
]
|
||||
[ paragraph
|
||||
([ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
]
|
||||
++ [ F.size 18
|
||||
, infoSpacing
|
||||
]
|
||||
)
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
, infoSpacing
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
[ el
|
||||
[ tooltip
|
||||
"The following information provides additional context and insight into the reasoning behind the argument."
|
||||
|
@ -420,20 +410,17 @@ summaryMakerTitle argument =
|
|||
, E.alignLeft
|
||||
]
|
||||
[ paragraph
|
||||
([ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
]
|
||||
++ [ F.size 18
|
||||
, spacing 3
|
||||
]
|
||||
)
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, F.bold
|
||||
, spacing 3
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
[ text argument.propositionSummary
|
||||
|> el
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.regular
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
]
|
||||
]
|
||||
]
|
||||
|
@ -454,15 +441,13 @@ strengthMaker =
|
|||
, E.alignLeft
|
||||
]
|
||||
[ paragraph
|
||||
([ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
]
|
||||
++ [ F.size 18
|
||||
, E.width fill
|
||||
]
|
||||
)
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
, E.width fill
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
[ el
|
||||
[ tooltip
|
||||
"This represents my confidence in the soundness of the argument."
|
||||
|
|
|
@ -9,6 +9,7 @@ import Config.Helpers.Format
|
|||
( headerFontSizeSmall
|
||||
, paragraphFontSize
|
||||
, paragraphSpacing
|
||||
, smallTextFontSize
|
||||
)
|
||||
import Config.Helpers.Headers.Helpers exposing (..)
|
||||
import Config.Helpers.Headers.Records exposing (cuckListHeader)
|
||||
|
@ -165,9 +166,8 @@ socialMaker cuck =
|
|||
paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, spacing 8
|
||||
]
|
||||
[ text "Social: "
|
||||
|
@ -192,9 +192,8 @@ dodgeTitle cuck =
|
|||
paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
]
|
||||
[ text "Dodges: " ]
|
||||
|
||||
|
@ -221,8 +220,7 @@ makeDodge cuck dodge index =
|
|||
[ column
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, alignTop
|
||||
, alignRight
|
||||
, F.alignRight
|
||||
|
@ -331,7 +329,7 @@ receipts : Cuck -> Dodge -> Element msg
|
|||
receipts cuck dodge =
|
||||
row
|
||||
[ spacing 3
|
||||
, F.size 12
|
||||
, smallTextFontSize
|
||||
, paddingEach
|
||||
{ top = 0
|
||||
, right = 0
|
||||
|
|
|
@ -6,7 +6,8 @@ import Config.Helpers.Cards.Types as C
|
|||
import Config.Helpers.Converters exposing (toTitleCase)
|
||||
import Config.Helpers.Format
|
||||
exposing
|
||||
( paragraphFontSize
|
||||
( headerFontSizeSmall
|
||||
, paragraphFontSize
|
||||
, paragraphSpacing
|
||||
)
|
||||
import Config.Helpers.Headers.Helpers exposing (..)
|
||||
|
@ -178,8 +179,7 @@ gibberishMakerBody gibberish =
|
|||
[ paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, F.center
|
||||
]
|
||||
[ domainList gibberish
|
||||
|
@ -222,7 +222,6 @@ descriptionMaker gibberish =
|
|||
, spacing 3
|
||||
, F.regular
|
||||
, F.alignLeft
|
||||
, F.size 16
|
||||
]
|
||||
[ text gibberish.gibberishDescription
|
||||
]
|
||||
|
@ -243,7 +242,7 @@ makeTerms bar index terms =
|
|||
[ row
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.regular
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, F.bold
|
||||
, F.alignLeft
|
||||
, E.width fill
|
||||
|
@ -278,7 +277,7 @@ makeTerms bar index terms =
|
|||
, paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.regular
|
||||
, F.size 16
|
||||
, paragraphFontSize
|
||||
, F.alignLeft
|
||||
]
|
||||
[ text
|
||||
|
@ -308,9 +307,8 @@ intelligibilityBar terms =
|
|||
[ paragraph
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, F.bold
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, E.alignLeft
|
||||
, E.width fill
|
||||
]
|
||||
|
|
|
@ -252,7 +252,7 @@ episodeMaker appearanceEntry =
|
|||
{ url = appearanceEntry.appearanceLink
|
||||
, label =
|
||||
paragraph
|
||||
[ F.size 18
|
||||
[ headerFontSizeSmall
|
||||
]
|
||||
[ text ("#" ++ appearanceEntry.appearanceEpisode ++ ": " ++ appearanceEntry.appearanceTitle)
|
||||
|> el
|
||||
|
|
|
@ -8,6 +8,8 @@ import Config.Helpers.Cards.Types as C
|
|||
import Config.Helpers.Format
|
||||
exposing
|
||||
( divider
|
||||
, headerFontSizeBig
|
||||
, headerFontSizeSmall
|
||||
, paragraphFontSize
|
||||
, paragraphSpacing
|
||||
)
|
||||
|
@ -52,6 +54,7 @@ import Page exposing (Page)
|
|||
import Route exposing (Route)
|
||||
import Shared exposing (..)
|
||||
import View exposing (View)
|
||||
import Config.Helpers.Format exposing (smallTextFontSize)
|
||||
|
||||
|
||||
page : Shared.Model -> Route () -> Page Model Msg
|
||||
|
@ -272,7 +275,7 @@ featureList nutridex device =
|
|||
, column
|
||||
[ centerX ]
|
||||
[ column
|
||||
[ F.size 18
|
||||
[ headerFontSizeSmall
|
||||
, F.bold
|
||||
, F.color colourTheme.textLightOrange
|
||||
]
|
||||
|
@ -288,7 +291,7 @@ featureList nutridex device =
|
|||
]
|
||||
]
|
||||
]
|
||||
, column [ width fill, F.size 12, spacing 3 ] <|
|
||||
, column [ width fill, smallTextFontSize, spacing 3 ] <|
|
||||
List.map2 (\x y -> makeFeature x)
|
||||
nutridex.nutriDexFeatures
|
||||
(List.range 1 (List.length nutridex.nutriDexFeatures))
|
||||
|
@ -307,7 +310,7 @@ nutriDexTitleMaker title =
|
|||
, F.bold
|
||||
]
|
||||
++ [ centerX
|
||||
, F.size 25
|
||||
, headerFontSizeBig
|
||||
, F.color colourTheme.textLightOrange
|
||||
, paddingEach
|
||||
{ top = 10
|
||||
|
@ -439,7 +442,7 @@ nutriDexAdjustments device =
|
|||
]
|
||||
[ text "• "
|
||||
, text "No adjustments are made to vitamin B1, vitamin B2, vitamin B3, manganese, phosphorus, and potassium, due to their DRIs only representing total daily intake, or due to the nutrient having close to 100% bioavailability. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/books/NBK114331/"
|
||||
, label = text "1"
|
||||
|
@ -484,10 +487,9 @@ nutridexSubTitleMaker title =
|
|||
el
|
||||
[ F.color colourTheme.textLightGrey
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
, width fill
|
||||
, F.size 18
|
||||
, headerFontSizeSmall
|
||||
, F.color colourTheme.textLightOrange
|
||||
]
|
||||
<|
|
||||
|
@ -522,7 +524,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for vitamin B5 is multiplied by 2 in order to accommodate its average 50% bioavailability from food. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/books/NBK114311/"
|
||||
, label = text "8"
|
||||
|
@ -540,7 +542,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for plant-derived vitamin B6 is multiplied by 1.74 in order to accommodate the average ~42.5% reduction in bioavailability of pyridoxine glucoside. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/2843032"
|
||||
, label = text "9"
|
||||
|
@ -558,7 +560,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for animal-derived vitamin B6 is multiplied by 1.33 in order to accommodate the average ~25% reduction in bioavailability of as a result of cooking. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://pdfs.semanticscholar.org/b844/5e60d87753144ef856e0ae207b551aa75b9c.pdf"
|
||||
, label = text "10"
|
||||
|
@ -576,7 +578,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The contribution of vitamin B12 is capped at 1.5mcg in order to account for the average absorption cap of ~1.5mcg per serving in healthy people. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/18606874"
|
||||
, label = text "11"
|
||||
|
@ -594,7 +596,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for folate has been multiplied by 2 in order to accommodate its average 50% bioavailbility from food. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3257685/"
|
||||
, label = text "12"
|
||||
|
@ -612,7 +614,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The contribution of plant-derived vitamin A (as retinol activity equivalents) is capped at 900mcg. This is to accommodate the fact that it is unlikely that the body can convert more than the DRI of vitamin A from carotenoids. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2855261/"
|
||||
, label = text "13"
|
||||
|
@ -630,7 +632,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for plant-derived vitamin K, phylloquinone, is multiplied by 10 in order to accommodate its 10% bioavailability from plant foods. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/8813897"
|
||||
, label = text "14"
|
||||
|
@ -648,7 +650,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for vitamin C has been multiplied by 1.25 in order to accommodate its average ~80% bioavailability. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/12134712"
|
||||
, label = text "15"
|
||||
|
@ -666,7 +668,7 @@ nutriDexVitamins =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for vitamin E has been multiplied by 4.65 in order to accommodate its average 21.5% bioavailability. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5745505/"
|
||||
, label = text "16"
|
||||
|
@ -706,7 +708,7 @@ nutriDexFattyAcids =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRIs for omega-3 and omega-6 have been recalculated to 250mg/day and 500mg/day, respectively. This better reflects our actual physiological requirements for these fatty acids as provided by their pre-elongated, animal-derived varieties. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5946201/"
|
||||
, label = text "17"
|
||||
|
@ -729,7 +731,7 @@ nutriDexFattyAcids =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRIs for plant-derived omega-3 and omega-6 have been multiplied by 6.66 in order to reflect their maximal ~15% conversion rate. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/12323090"
|
||||
, label = text "19"
|
||||
|
@ -747,7 +749,7 @@ nutriDexFattyAcids =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The contributions of plant-derived omega-3 and omega-6 are capped at 4.4444g before conversion rates are factored, in order to accommodate their conversion rate cap of 2% of calories per day. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3132704/"
|
||||
, label = text "20"
|
||||
|
@ -799,7 +801,7 @@ nutriDexMinerals =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for plant-derived copper has been multiplied by 2.94 in order to accommodate its average ~34% bioavailability from plant foods. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/8615369"
|
||||
, label = text "21"
|
||||
|
@ -817,7 +819,7 @@ nutriDexMinerals =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for animal-derived copper has been multiplied by 2.43 in order to accommodate its average ~41% bioavailability from animal foods. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/8615369"
|
||||
, label = text "21"
|
||||
|
@ -835,7 +837,7 @@ nutriDexMinerals =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for magnesium has been multiplied by 2.85 in order to accommodate its 35% bioavailability. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/1864954"
|
||||
, label = text "22"
|
||||
|
@ -865,7 +867,7 @@ nutriDexMinerals =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRI for selenium has been multiplied by 1.11 in order to accommodate its 90% bioavailability. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/20200264"
|
||||
, label = text "23"
|
||||
|
@ -883,7 +885,7 @@ nutriDexMinerals =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The contribution of zinc is capped at 7mg in order to account for the average absorption cap of 7mg per serving in healthy people. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://www.ncbi.nlm.nih.gov/pubmed/10801947"
|
||||
, label = text "24"
|
||||
|
@ -935,7 +937,7 @@ nutriDexAminoAcids =
|
|||
)
|
||||
[ text "• "
|
||||
, text "The DRIs for all essential amino acids from non-animal sources have been multiplied by 1.492 in order to accommodate their average PDCAAS score of .67. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://en.wikipedia.org/wiki/Protein_Digestibility_Corrected_Amino_Acid_Score"
|
||||
, label = text "25"
|
||||
|
@ -953,7 +955,7 @@ nutriDexAminoAcids =
|
|||
)
|
||||
[ text "• "
|
||||
, text "All scores reflecting total protein yield of non-animal foods have been multiplied by .67 in order to accommodate the average 67% bioavailability of protein from non-animal sources. "
|
||||
, row [ F.regular, F.size 12 ]
|
||||
, row [ F.regular, smallTextFontSize ]
|
||||
[ newTabLink referenceFormat
|
||||
{ url = "https://en.wikipedia.org/wiki/Protein_Digestibility_Corrected_Amino_Acid_Score"
|
||||
, label = text "25"
|
||||
|
|
|
@ -156,15 +156,12 @@ serviceWidth =
|
|||
rateMaker : Service msg -> Element msg
|
||||
rateMaker service =
|
||||
row
|
||||
([ F.color colourTheme.textLightOrange
|
||||
, paragraphSpacing
|
||||
, paragraphFontSize
|
||||
, F.bold
|
||||
]
|
||||
++ [ F.size 18
|
||||
, E.width fill
|
||||
]
|
||||
)
|
||||
[ F.color colourTheme.textLightOrange
|
||||
, paragraphSpacing
|
||||
, F.bold
|
||||
, headerFontSizeSmall
|
||||
, E.width fill
|
||||
]
|
||||
[ column
|
||||
[ alignTop
|
||||
, serviceWidth
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue