-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:TYPO3incubator/surfcamp-team-jacuzzi
- Loading branch information
Showing
15 changed files
with
324 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@mixin hyphens { | ||
word-wrap: break-word; | ||
overflow-wrap: break-word; | ||
-webkit-hyphens: auto; | ||
-moz-hyphens: auto; | ||
hyphens: auto; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
@import './functions'; | ||
@import './variables'; | ||
@import './mixins'; | ||
|
||
@import './globals'; | ||
@import './grid'; |
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 |
---|---|---|
|
@@ -12,7 +12,9 @@ | |
} | ||
} | ||
|
||
.subheadline { | ||
.topline { | ||
width: 100%; | ||
display: block; | ||
margin-bottom: rem(4); | ||
text-transform: uppercase; | ||
} |
22 changes: 22 additions & 0 deletions
22
local_packages/psi/Resources/Private/Scss/Layout/_breadcumb.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,22 @@ | ||
.breadcrumb-container { | ||
align-items: center; | ||
display: flex; | ||
gap: rem(4); | ||
p, a { | ||
font-size: rem(14); | ||
} | ||
} | ||
#breadcrumb-menu { | ||
display: flex; | ||
gap: rem(4); | ||
margin: 0; | ||
padding: 0; | ||
li { | ||
display: block; | ||
a { | ||
color: var(--text); | ||
text-decoration: none; | ||
font-weight: 700; | ||
} | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
local_packages/psi/Resources/Private/Scss/Layout/_fe-users.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,29 @@ | ||
#main-content { | ||
padding: rem(30); | ||
width: calc(100% - #{rem(240)}); | ||
} | ||
.user-info-container { | ||
align-items: center; | ||
display: flex; | ||
gap: rem(4); | ||
padding: rem(4); | ||
} | ||
.user-info-avatar { | ||
img { | ||
border: 1px solid var(--primary); | ||
border-radius: 50%; | ||
} | ||
} | ||
.user-info-name { | ||
align-items: center; | ||
display: flex; | ||
gap: rem(4); | ||
p { | ||
margin: 0; | ||
} | ||
} | ||
.fe-user-title { | ||
font-size: rem(12); | ||
margin: 0; | ||
margin-bottom: rem(4); | ||
} |
37 changes: 37 additions & 0 deletions
37
local_packages/psi/Resources/Private/Scss/Layout/_footer.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,37 @@ | ||
#site-footer { | ||
display: flex; | ||
height: rem(50); | ||
} | ||
.footer-container { | ||
background-color: var(--accent, #D9D9D9); | ||
display: flex; | ||
justify-content: space-between; | ||
height: 100%; | ||
width: 100%; | ||
} | ||
.footer-logout { | ||
background-color: #c7c7c7; | ||
display: flex; | ||
width: rem(240); | ||
a { | ||
display: block; | ||
font-size: rem(20); | ||
font-weight: 600; | ||
margin: auto 0; | ||
padding-left: rem(32); | ||
text-decoration: none; | ||
} | ||
} | ||
.footermenu-container { | ||
display: flex; | ||
justify-content: center; | ||
padding-right: rem(32); | ||
} | ||
#footer-nav { | ||
display: flex; | ||
margin: auto; | ||
padding: 0; | ||
li { | ||
display: block; | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
local_packages/psi/Resources/Private/Scss/Layout/_header-menu.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,55 @@ | ||
#page-header { | ||
display: flex; | ||
height: rem(80); | ||
} | ||
.header-inner { | ||
background-color: var(--light); | ||
display: flex; | ||
justify-content: space-between; | ||
padding: 0 rem(30); | ||
padding-left: 0; | ||
width: 100%; | ||
} | ||
.header-left-container { | ||
align-items: center; | ||
display: flex; | ||
gap: rem(24); | ||
justify-content: center; | ||
} | ||
.header-menu-toggle { | ||
background: var(--light); | ||
border: none; | ||
display: flex; | ||
flex-direction: column; | ||
gap: rem(8); | ||
height: 100%; | ||
justify-content: center; | ||
width: rem(64); | ||
&:hover { | ||
cursor: pointer; | ||
} | ||
} | ||
.header-logo { | ||
height: rem(60); | ||
img { | ||
height: auto; | ||
max-height: 100%; | ||
object-fit: contain; | ||
width: 100%; | ||
} | ||
} | ||
.menu-toggle-stripe { | ||
background-color: var(--primary); | ||
height: rem(4); | ||
margin: 0 auto; | ||
width: rem(40); | ||
} | ||
.header-avatar { | ||
img { | ||
height: auto; | ||
max-width: rem(80); | ||
} | ||
} | ||
.header-search-container { | ||
margin: 0 auto; | ||
} |
22 changes: 22 additions & 0 deletions
22
local_packages/psi/Resources/Private/Scss/Layout/_language-menu.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,22 @@ | ||
.language-menu { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
#language-navigation { | ||
display: flex; | ||
gap: rem(4); | ||
margin: auto; | ||
padding: 0; | ||
li { | ||
border-right: 1px solid var(--text); | ||
display: block; | ||
padding-right: rem(4); | ||
&:last-child { | ||
border-right: none; | ||
} | ||
a { | ||
color: var(--text); | ||
text-decoration: none; | ||
} | ||
} | ||
} |
Oops, something went wrong.