diff --git a/_data/bibere/papers.yaml b/_data/bibere/papers.yaml index 25e867f581ee3..72ad4c34cf0c1 100644 --- a/_data/bibere/papers.yaml +++ b/_data/bibere/papers.yaml @@ -1,7 +1,7 @@ NNPDF:2024nan: title: "The Path to N3LO Parton Distributions" type: Paper - venue: "EPJC" + venue: "European Physical Journal C" year: 2024 authors: - NNPDF collaboration @@ -27,7 +27,7 @@ NNPDF:2024nan: NNPDF:2024dpb: title: "Determination of the theory uncertainties from missing higher orders on NNLO parton distributions with percent accuracy" type: Paper - venue: "EPJC" + venue: "European Physical Journal C" year: 2024 authors: - NNPDF collaboration @@ -45,7 +45,7 @@ NNPDF:2024dpb: NNPDF:2024djq: title: "Photons in the proton: implications for the LHC" type: Paper - venue: "EPJC" + venue: "European Physical Journal C" year: 2024 authors: - NNPDF collaboration @@ -85,6 +85,7 @@ Laurenti:2022wov: Laurenti:2024anf: title: "Construction of a next-to-next-to-next-to-leading order approximation for heavy flavour production in deep inelastic scattering with quark masses" type: MasterThesis + venue: "Master Thesis" year: 2021 authors: - laurenti diff --git a/_sass/_bibere.scss b/_sass/_bibere.scss new file mode 100644 index 0000000000000..5b20b5da354b8 --- /dev/null +++ b/_sass/_bibere.scss @@ -0,0 +1,96 @@ + + +$paper: #A40064; +$primary: #0064a4; +$link: #666666; +$link-hover: #999999; + +$white: #ffffff; +$black: #000000; + +.yearGroup { + font-size: 20px; +} + +.papers { + padding-left: 5px; + margin: 5px; +} + +.mainAuthor { + color:$primary; + font-weight: normal; +} + +.mainAuthor a { + color:$primary; + font-weight: bold; +} + +.title { + font-weight: bold; + display: block; +} + +.venue { + font-style: italic; +} + +.emphasisNote { + font-weight: bold; + color: $primary; +} + +.note { + font-style: italic; + color: $primary; +} + +.abstract { + display: none; + margin-block-start: 1em; + margin-block-end: 1em; +} + +.tag { + margin-left: 10px; + padding: 3px; +} + +.collapse { + display: none; +} + + +.details-panel { + border-radius: 15px; + background-color: rgba($color: #C1BFE8, $alpha: 0.4); + margin: 2px; + padding: 10px; + font-size: 12px; +} + +.tag_Conference { + background-color: $primary; + color: $white; +} + +.tag_Paper { + background-color: $paper; + color: $white; +} + +.tag_Workshop { + background-color: $link; + color: $white; +} + +.tag_Chapter { + background-color: $link-hover; + color: $black; +} + +.tag_Demo { + background-color: $link-hover; + color: $black; +} diff --git a/assets/css/main.scss b/assets/css/main.scss index a9399e53b2457..b1bbfdc2c4609 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -38,4 +38,6 @@ @import "vendor/font-awesome/solid"; @import "vendor/font-awesome/brands"; @import "vendor/magnific-popup/magnific-popup"; -@import "print"; \ No newline at end of file +@import "print"; + +@import 'bibere.scss'; \ No newline at end of file