mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
feat: removed bold shit
This commit is contained in:
parent
7b39ebc6df
commit
08f5d8e198
2 changed files with 64 additions and 82 deletions
|
@ -7,13 +7,6 @@ import Config.Format.Format
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
)
|
)
|
||||||
import Config.Helpers.Converters exposing (formatSocial)
|
import Config.Helpers.Converters exposing (formatSocial)
|
||||||
import Config.Style.Colour exposing (colourTheme)
|
|
||||||
import Config.Style.Transitions
|
|
||||||
exposing
|
|
||||||
( hoverFontDarkOrange
|
|
||||||
, transitionStyleFast
|
|
||||||
, transitionStyleSlow
|
|
||||||
)
|
|
||||||
import Config.Pages.Debate.Cuckery.CuckList.AdamSinger exposing (cuckAdamSinger)
|
import Config.Pages.Debate.Cuckery.CuckList.AdamSinger exposing (cuckAdamSinger)
|
||||||
import Config.Pages.Debate.Cuckery.CuckList.AmberOHearn exposing (cuckAmberOHearn)
|
import Config.Pages.Debate.Cuckery.CuckList.AmberOHearn exposing (cuckAmberOHearn)
|
||||||
import Config.Pages.Debate.Cuckery.CuckList.AnnChilders exposing (cuckAnnChilders)
|
import Config.Pages.Debate.Cuckery.CuckList.AnnChilders exposing (cuckAnnChilders)
|
||||||
|
@ -81,6 +74,13 @@ import Config.Pages.Debate.Cuckery.CuckList.TuckerGoodrich exposing (cuckTuckerG
|
||||||
import Config.Pages.Debate.Cuckery.CuckList.ZoeHarcombe exposing (cuckZoeHarcombe)
|
import Config.Pages.Debate.Cuckery.CuckList.ZoeHarcombe exposing (cuckZoeHarcombe)
|
||||||
import Config.Pages.Debate.Cuckery.CuckList.ZsofiaClemens exposing (cuckZsofiaClemens)
|
import Config.Pages.Debate.Cuckery.CuckList.ZsofiaClemens exposing (cuckZsofiaClemens)
|
||||||
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
import Config.Pages.Debate.Cuckery.Types exposing (..)
|
||||||
|
import Config.Style.Colour exposing (colourTheme)
|
||||||
|
import Config.Style.Transitions
|
||||||
|
exposing
|
||||||
|
( hoverFontDarkOrange
|
||||||
|
, transitionStyleFast
|
||||||
|
, transitionStyleSlow
|
||||||
|
)
|
||||||
import Element as E exposing (..)
|
import Element as E exposing (..)
|
||||||
import Element.Background as B
|
import Element.Background as B
|
||||||
import Element.Border as D
|
import Element.Border as D
|
||||||
|
@ -206,30 +206,25 @@ socialMaker cuck =
|
||||||
dodgeTitle : Cuck -> Element msg
|
dodgeTitle : Cuck -> Element msg
|
||||||
dodgeTitle cuck =
|
dodgeTitle cuck =
|
||||||
paragraph
|
paragraph
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
, F.bold
|
, F.bold
|
||||||
|
, F.size 18
|
||||||
]
|
]
|
||||||
++ [ F.size 18
|
|
||||||
]
|
|
||||||
)
|
|
||||||
[ text "Dodges: " ]
|
[ text "Dodges: " ]
|
||||||
|
|
||||||
|
|
||||||
makeDodge : Dodge -> Int -> Element msg
|
makeDodge : Dodge -> Int -> Element msg
|
||||||
makeDodge dodgeEntry index =
|
makeDodge dodgeEntry index =
|
||||||
column
|
column
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
, F.bold
|
|
||||||
, alignLeft
|
, alignLeft
|
||||||
]
|
, spacing 8
|
||||||
++ [ spacing 8
|
|
||||||
, width fill
|
, width fill
|
||||||
]
|
]
|
||||||
)
|
|
||||||
[ row
|
[ row
|
||||||
[ width fill
|
[ width fill
|
||||||
, paddingEach
|
, paddingEach
|
||||||
|
@ -240,16 +235,14 @@ makeDodge dodgeEntry index =
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
[ column
|
[ column
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
]
|
, F.size 18
|
||||||
++ [ F.size 18
|
|
||||||
, alignTop
|
, alignTop
|
||||||
, alignRight
|
, alignRight
|
||||||
, F.alignRight
|
, F.alignRight
|
||||||
]
|
]
|
||||||
)
|
|
||||||
[ text (String.fromInt index ++ ". ") ]
|
[ text (String.fromInt index ++ ". ") ]
|
||||||
, column
|
, column
|
||||||
[ spacing 3
|
[ spacing 3
|
||||||
|
|
|
@ -13,6 +13,7 @@ import Config.Helpers.StrengthBar
|
||||||
, barPadding
|
, barPadding
|
||||||
)
|
)
|
||||||
import Config.Helpers.ToolTip exposing (tooltip)
|
import Config.Helpers.ToolTip exposing (tooltip)
|
||||||
|
import Config.Pages.Interviews.Types exposing (..)
|
||||||
import Config.Style.Colour exposing (colourTheme)
|
import Config.Style.Colour exposing (colourTheme)
|
||||||
import Config.Style.Transitions
|
import Config.Style.Transitions
|
||||||
exposing
|
exposing
|
||||||
|
@ -25,7 +26,6 @@ import Element.Background as B
|
||||||
import Element.Border as D
|
import Element.Border as D
|
||||||
import Element.Font as F
|
import Element.Font as F
|
||||||
import Html.Attributes as H exposing (style)
|
import Html.Attributes as H exposing (style)
|
||||||
import Config.Pages.Interviews.Types exposing (..)
|
|
||||||
|
|
||||||
|
|
||||||
interviewMaker : Interview -> Element msg
|
interviewMaker : Interview -> Element msg
|
||||||
|
@ -93,15 +93,13 @@ interviewSocial interview =
|
||||||
socialMaker : Interview -> Element msg
|
socialMaker : Interview -> Element msg
|
||||||
socialMaker interview =
|
socialMaker interview =
|
||||||
paragraph
|
paragraph
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
, F.bold
|
, F.bold
|
||||||
]
|
, F.size 18
|
||||||
++ [ F.size 18
|
|
||||||
, spacing 5
|
, spacing 5
|
||||||
]
|
]
|
||||||
)
|
|
||||||
[ text "Social: "
|
[ text "Social: "
|
||||||
, newTabLink
|
, newTabLink
|
||||||
[ paragraphFontSize
|
[ paragraphFontSize
|
||||||
|
@ -122,14 +120,12 @@ socialMaker interview =
|
||||||
appearanceTitle : Interview -> Element msg
|
appearanceTitle : Interview -> Element msg
|
||||||
appearanceTitle interview =
|
appearanceTitle interview =
|
||||||
paragraph
|
paragraph
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
, F.bold
|
, F.bold
|
||||||
|
, F.size 18
|
||||||
]
|
]
|
||||||
++ [ F.size 18
|
|
||||||
]
|
|
||||||
)
|
|
||||||
[ text "Appearances: " ]
|
[ text "Appearances: " ]
|
||||||
|
|
||||||
|
|
||||||
|
@ -144,16 +140,13 @@ appearanceMaker interview =
|
||||||
makeAppearance : Appearance -> Int -> Element msg
|
makeAppearance : Appearance -> Int -> Element msg
|
||||||
makeAppearance appearanceEntry index =
|
makeAppearance appearanceEntry index =
|
||||||
column
|
column
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
, F.bold
|
|
||||||
, alignLeft
|
, alignLeft
|
||||||
]
|
, spacing 8
|
||||||
++ [ spacing 8
|
|
||||||
, width fill
|
, width fill
|
||||||
]
|
]
|
||||||
)
|
|
||||||
[ row
|
[ row
|
||||||
([ F.color colourTheme.textLightGrey
|
([ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
|
@ -170,16 +163,14 @@ makeAppearance appearanceEntry index =
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
[ column
|
[ column
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
]
|
, F.size 18
|
||||||
++ [ F.size 18
|
|
||||||
, alignTop
|
, alignTop
|
||||||
, alignRight
|
, alignRight
|
||||||
, F.alignRight
|
, F.alignRight
|
||||||
]
|
]
|
||||||
)
|
|
||||||
[ text (String.fromInt index ++ ". ") ]
|
[ text (String.fromInt index ++ ". ") ]
|
||||||
, column
|
, column
|
||||||
[ spacing 8
|
[ spacing 8
|
||||||
|
@ -226,15 +217,13 @@ experienceMaker appearanceEntry =
|
||||||
, E.alignLeft
|
, E.alignLeft
|
||||||
]
|
]
|
||||||
[ paragraph
|
[ paragraph
|
||||||
([ F.color colourTheme.textLightGrey
|
[ F.color colourTheme.textLightGrey
|
||||||
, paragraphSpacing
|
, paragraphSpacing
|
||||||
, paragraphFontSize
|
, paragraphFontSize
|
||||||
, F.bold
|
, F.bold
|
||||||
]
|
, F.size 18
|
||||||
++ [ F.size 18
|
|
||||||
, E.width fill
|
, E.width fill
|
||||||
]
|
]
|
||||||
)
|
|
||||||
[ el
|
[ el
|
||||||
[ tooltip
|
[ tooltip
|
||||||
"This represents how pleasant it was to interact with the host(s)."
|
"This represents how pleasant it was to interact with the host(s)."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue