-
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.
- Loading branch information
1 parent
055cfd9
commit 5bb3ebc
Showing
30 changed files
with
232 additions
and
360 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -27,7 +27,6 @@ | |
h1 { | ||
color: var(--issBrand); | ||
font-size: 42px; | ||
line-height: 0.75; | ||
} | ||
|
||
h3 { | ||
|
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 |
---|---|---|
@@ -1,41 +1,42 @@ | ||
.iss__header { | ||
padding: 12px 20px; | ||
display: flex; | ||
justify-content: space-between; | ||
place-items: center; | ||
position: sticky; | ||
top: 0px; | ||
background-color: white; | ||
z-index: 10; | ||
box-shadow: 0px 0px 4px 0px var(--issBrand); | ||
border-bottom-left-radius: 12px; | ||
border-bottom-right-radius: 12px; | ||
padding: 12px 20px; | ||
gap: 20px; | ||
display: flex; | ||
place-items: center; | ||
position: sticky; | ||
top: 0px; | ||
background-color: white; | ||
z-index: 10; | ||
box-shadow: 0px 0px 4px 0px var(--issBrand); | ||
} | ||
.iss__header__user { | ||
display: flex; | ||
gap: 20px; | ||
place-items: center; | ||
color: var(--issBrand); | ||
display: flex; | ||
margin-left: auto; | ||
gap: 12px; | ||
place-items: center; | ||
color: var(--issBrand); | ||
} | ||
.iss__header__logoutButton { | ||
background: none; | ||
border: 1px solid var(--issBrand); | ||
cursor: pointer; | ||
padding: 4px 8px; | ||
transition: color 0.3s ease, background-color 0.3s ease; | ||
background: none; | ||
border: 1px solid var(--issBrand); | ||
cursor: pointer; | ||
padding: 4px 8px; | ||
border-radius: 2px; | ||
transition: | ||
color 0.3s ease, | ||
background-color 0.3s ease; | ||
} | ||
@media (hover:hover) { | ||
.iss__header__logoutButton:hover { | ||
background-color: var(--issBrand); | ||
color: white; | ||
} | ||
@media (hover: hover) { | ||
.iss__header__logoutButton:hover { | ||
background-color: var(--issBrand); | ||
color: white; | ||
} | ||
} | ||
@media (max-width: 575px) { | ||
.iss__header { | ||
padding: 10px; | ||
} | ||
.iss__brand { | ||
gap: 4px; | ||
} | ||
|
||
.iss__header { | ||
padding: 10px; | ||
} | ||
.iss__brand { | ||
gap: 4px; | ||
} | ||
} |
50 changes: 26 additions & 24 deletions
50
frontend-app/src/components/common/ProjectCard/styles.css
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,32 +1,34 @@ | ||
.iss__projectCard { | ||
display: flex; | ||
flex-direction: column; | ||
text-decoration: none; | ||
background-color: white; | ||
border-radius: 12px; | ||
border: 1px solid var(--issBrand); | ||
padding: 12px 20px; | ||
box-shadow: 1px 1px 2px var(--issBrand); | ||
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; | ||
display: flex; | ||
flex-direction: column; | ||
text-decoration: none; | ||
background-color: white; | ||
border: 1px solid var(--issBrand); | ||
border-radius: 2px; | ||
padding: 12px 20px; | ||
transition: | ||
background-color 0.3s ease, | ||
transform 0.3s ease, | ||
box-shadow 0.3s ease; | ||
} | ||
.iss__projectCard__name { | ||
color: var(--issBrand); | ||
margin-bottom: 12px; | ||
word-break: break-all; | ||
color: var(--issBrand); | ||
margin-bottom: 12px; | ||
word-break: break-all; | ||
} | ||
.iss__projectCard__text { | ||
font-size: 18px; | ||
color: black; | ||
margin-bottom: 20px; | ||
font-size: 18px; | ||
color: black; | ||
margin-bottom: 20px; | ||
} | ||
.iss__projectCard__date { | ||
font-size: 8px; | ||
color: black; | ||
text-align: right; | ||
font-size: 8px; | ||
color: black; | ||
text-align: right; | ||
} | ||
@media (hover: hover) { | ||
.iss__projectCard:hover { | ||
transform: scale(1.03); | ||
box-shadow: 1px 1px 4px var(--issBrand); | ||
} | ||
} | ||
@media (hover:hover) { | ||
.iss__projectCard:hover { | ||
transform: scale(1.01) translate(-6px, -6px); | ||
box-shadow: 6px 6px 10px var(--issBrand); | ||
} | ||
} |
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: 11 additions & 20 deletions
31
frontend-app/src/components/common/TitleSwitch/styles.css
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 |
---|---|---|
@@ -1,20 +1,28 @@ | ||
.iss__brand { | ||
display: flex; | ||
place-items: center; | ||
gap: 12px; | ||
text-decoration: none; | ||
display: flex; | ||
flex-direction: column; | ||
place-items: center; | ||
gap: 8px; | ||
text-decoration: none; | ||
padding-right: 8px; | ||
border-right: 1px solid #62abff57; | ||
transition: border-color 0.3s ease; | ||
} | ||
.iss__brand__logo { | ||
width: 100px; | ||
height: 60px; | ||
width: 100px; | ||
} | ||
.iss__brand__name { | ||
text-align: center; | ||
color: var(--issBrand); | ||
transition: opacity 0.3s ease; | ||
font-size: 12px; | ||
text-align: center; | ||
color: var(--issBrand); | ||
opacity: 0.4; | ||
transition: opacity 0.3s ease; | ||
} | ||
@media (hover: hover) { | ||
.iss__brand:hover { | ||
border-color: var(--issBrand); | ||
} | ||
.iss__brand:hover .iss__brand__name { | ||
opacity: 1; | ||
} | ||
} | ||
@media (hover:hover) { | ||
.iss__brand:hover .iss__brand__name { | ||
opacity: 0.7; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.