-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Merge main into task/game-teaser
- Loading branch information
Showing
27 changed files
with
610 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
local_packages/football/Configuration/Sets/Football/settings.definitions.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
settings: | ||
general.logo: | ||
label: 'Logo' | ||
description: 'Your logo' | ||
type: string | ||
default: 'EXT:football/Resources/Public/Images/Logos/logo.svg' | ||
general.favicon: | ||
label: 'Favicon' | ||
description: 'Your Favicon' | ||
type: string | ||
default: 'EXT:football/Resources/Public/Icons/favicon.png' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
local_packages/football/Resources/Private/Scss/Base/typography.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,34 @@ | ||
body, p, a { | ||
font-family: $font-primary; | ||
} | ||
|
||
p { | ||
font-size: toRem(18); | ||
line-height: toRem(30); | ||
font-weight: 300; | ||
} | ||
|
||
h2 { | ||
font-family: $font-primary; | ||
font-size: toRem(62); | ||
font-weight: 900; | ||
line-height: toRem(72); | ||
letter-spacing: toRem(1); | ||
color: $color__text__default; | ||
} | ||
|
||
h4 { | ||
font-size: toRem(24); | ||
line-height: toRem(36); | ||
font-family: $font-primary; | ||
font-weight: 700; | ||
} | ||
|
||
a { | ||
color: $color__primary-red; | ||
text-decoration: none; | ||
|
||
&:hover { | ||
border-bottom: 1px solid $color__primary-red; | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
local_packages/football/Resources/Private/Scss/Elements/_form.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.pt-navbar { | ||
form { | ||
margin: auto; | ||
padding-top: toRem(60); | ||
|
||
@include media-breakpoint-up(md){ | ||
max-width: 75%; | ||
} | ||
} | ||
} | ||
|
||
.form-check { | ||
padding-left: 0; | ||
margin: toRem(15) 0; | ||
} | ||
|
||
.form-check-label, .form-label { | ||
font-family: $font-primary; | ||
color: $color__primary--dark-blue; | ||
} | ||
|
||
.form-check-label { | ||
font-size: toRem(12); | ||
font-weight: 300; | ||
span { | ||
padding-left: toRem(12); | ||
} | ||
} | ||
|
||
.form-control { | ||
border-radius: 0; | ||
font-size: toRem(15); | ||
font-weight: 300; | ||
} | ||
|
||
.required { | ||
display: none; | ||
} | ||
|
||
.form-group{ | ||
input[type=text], input[type=email] { | ||
min-height: toRem(48); | ||
} | ||
} | ||
|
||
textarea { | ||
&.form-control{ | ||
min-height: toRem(142); | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
local_packages/football/Resources/Private/Scss/Elements/_import.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
@import "cta"; | ||
@import "footer-menu"; | ||
@import "search"; | ||
@import "form"; | ||
@import "news"; | ||
@import "game"; |
65 changes: 65 additions & 0 deletions
65
local_packages/football/Resources/Private/Scss/Elements/_news.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
.news { | ||
padding-right: toRem(20); | ||
|
||
&--title { | ||
margin-top: toRem(30); | ||
font-size: toRem(24); | ||
font-family: $font-primary; | ||
font-weight: 700; | ||
line-height: toRem(36); | ||
} | ||
|
||
&--date { | ||
position: absolute; | ||
width: fit-content; | ||
padding: toRem(2) toRem(20); | ||
margin-top: -34px; | ||
background: $color__primary-red; | ||
color: $color__white; | ||
} | ||
|
||
&--image { | ||
height: toRem(275)!important; | ||
width: 100%; | ||
object-fit: cover; | ||
} | ||
|
||
&--button { | ||
display: flex; | ||
align-items: center; | ||
width: fit-content; | ||
|
||
.icon-arrow { | ||
position: relative; | ||
display: block; | ||
height: toRem(1); | ||
width: toRem(20); | ||
margin-left: toRem(15); | ||
background: $color__primary-red; | ||
|
||
&:before, &:after { | ||
content: " "; | ||
position: absolute; | ||
width: 7px; | ||
height: 1px; | ||
background: $color__primary-red ; | ||
} | ||
|
||
&:before{ | ||
top: toRem(-3); | ||
right: toRem(-1); | ||
transform: rotate(45deg); | ||
} | ||
|
||
&:after { | ||
top: toRem(2); | ||
right: toRem(-1); | ||
transform: rotate(-45deg); | ||
} | ||
} | ||
} | ||
|
||
&--row { | ||
padding: toRem(40) 0 toRem(60) 0; | ||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
local_packages/football/Resources/Private/Scss/Elements/search.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
.tx-indexedsearch-form { | ||
width: 25%; | ||
} | ||
|
||
.tx-indexedsearch-info-sword { | ||
padding: 16px 0; | ||
|
||
.tx-indexedsearch-info-sword-word { | ||
font-weight: bold; | ||
} | ||
} | ||
|
||
.tx-indexedsearch-results { | ||
margin-top: 20px; | ||
|
||
.tx-indexedsearch-res { | ||
padding: 16px 0; | ||
border-top: 1px solid $color__light-gray; | ||
|
||
.tx-indexedsearch-title { | ||
a { | ||
color: #FF3232; | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
.tx-indexedsearch-description { | ||
margin-bottom: 0; | ||
} | ||
} | ||
} | ||
|
||
.tx-indexedsearch-browsebox { | ||
margin-top: 20px; | ||
|
||
ul { | ||
list-style: none; | ||
padding: 0; | ||
display: flex; | ||
|
||
li { | ||
display: flex; | ||
width: 30px; | ||
height: 30px; | ||
border: 1px solid $color__light-gray; | ||
margin-right: 15px; | ||
|
||
&:hover, | ||
&.active{ | ||
border-color: $color__primary--dark-blue; | ||
} | ||
|
||
a { | ||
display: flex; | ||
-ms-flex-pack: center; | ||
justify-content: center; | ||
-ms-flex-align: center; | ||
align-items: center; | ||
width: 30px; | ||
height: 30px; | ||
text-decoration: none; | ||
color: $color__text__default; | ||
} | ||
|
||
&.tx-indexedsearch-browselist-next{ | ||
border: 0; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.