-
-
Notifications
You must be signed in to change notification settings - Fork 63
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
30317ea
commit 32d8987
Showing
7 changed files
with
250 additions
and
3 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,189 @@ | ||
.festival-card { | ||
border-top: 1px solid var(--cloud-grey); | ||
margin-top: 5rem; | ||
} | ||
|
||
.fair-card { | ||
border-top: 1px solid var(--cloud-grey); | ||
margin-top: 3rem; | ||
} | ||
|
||
.festival-card > div{ | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
width: 100%; | ||
padding-top: 3rem; | ||
} | ||
|
||
.fair-card > div{ | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
align-items: center; | ||
width: 100%; | ||
padding-top: 3rem; | ||
} | ||
|
||
.title{ | ||
/*font-size: 2em;*/ | ||
} | ||
|
||
.subTitle{ | ||
margin-top: 0.5rem; | ||
letter-spacing: 1px; | ||
} | ||
.description{ | ||
margin-top: 1rem; | ||
font-size: 13px; | ||
color: var(--black); | ||
overflow: hidden; | ||
height: 9em; | ||
|
||
display: -webkit-box; | ||
-webkit-line-clamp: 6; /* Number of lines to show */ | ||
-webkit-box-orient: vertical; | ||
text-overflow: ellipsis; | ||
white-space: normal; /* Allows the text to wrap within the box */ | ||
} | ||
|
||
|
||
.link-container{ | ||
display: flex; | ||
flex-direction: row; | ||
margin-top: 1.5rem; | ||
|
||
} | ||
|
||
.link-container > div{ | ||
border-top: 1px solid #E1E4E8; | ||
padding: 3px 10px 1px 10px; | ||
} | ||
.link-container1{ | ||
/*border-right: 1px solid #E1E4E8;*/ | ||
} | ||
.link-container2{ | ||
border-left: 1px solid #E1E4E8; | ||
} | ||
.link-container > div > a{ | ||
text-align: center; | ||
color: var(--grey); | ||
font-size: 12px; | ||
font-style: normal; | ||
font-weight: 350; | ||
letter-spacing: 1px; | ||
text-decoration: none; | ||
text-transform: none; | ||
line-height: 20px; | ||
|
||
position: relative; | ||
} | ||
|
||
.link-container > div > a::after { | ||
content: ""; | ||
position: absolute; | ||
bottom: 0; | ||
height: 1px; | ||
width: 100%; | ||
left: 0; | ||
background-color: var(--black); | ||
transition: 0.3s ease-in-out; | ||
transform: scale(0, 1); | ||
transform-origin: 0% 100%; | ||
} | ||
|
||
.link-container > div:hover > a:hover::after { | ||
transform: scale(1, 1); | ||
} | ||
|
||
.link-container > div:hover > a{ | ||
color: var(--black); | ||
filter: drop-shadow(0 0 0.90rem #A0A5AC); | ||
} | ||
|
||
|
||
|
||
.image-container{ | ||
margin-left: 2rem; | ||
width: 100%; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-end; | ||
} | ||
.image-container > img{ | ||
|
||
width: auto; | ||
max-width: 250px; | ||
height: auto; | ||
border-radius: 5px; | ||
} | ||
|
||
|
||
|
||
/* Mobile */ | ||
@media (max-width: 700px) { | ||
|
||
/*.card{*/ | ||
/* width: 96%;*/ | ||
/* padding-top: 3rem;*/ | ||
/* margin-top: 3rem;*/ | ||
/*}*/ | ||
|
||
.festival-card { | ||
border-top: 1px solid var(--cloud-grey); | ||
margin-top: 8rem; | ||
} | ||
|
||
.fair-card { | ||
border-top: 1px solid var(--cloud-grey); | ||
margin-top: 5rem; | ||
} | ||
|
||
|
||
.festival-card > div{ | ||
flex-direction: column-reverse !important; | ||
justify-content: space-between; | ||
} | ||
|
||
.fair-card > div{ | ||
flex-direction: column-reverse !important; | ||
justify-content: space-between; | ||
} | ||
|
||
|
||
|
||
|
||
.subTitle{ | ||
font-weight: 300; | ||
} | ||
|
||
.title{ | ||
font-size: 20px; | ||
} | ||
|
||
.image-container{ | ||
margin-left: 0; | ||
width: 100%; | ||
margin-bottom: 1rem; | ||
} | ||
.image-container > img{ | ||
width: auto; | ||
max-width: 250px; | ||
height: auto; | ||
border-radius: 5px; | ||
} | ||
|
||
.image-container > img{ | ||
/*width: 100px;*/ | ||
/*height: 100%;*/ | ||
|
||
width: 100%; | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
|
||
.link-container > div > a{ | ||
font-size: 10px; | ||
} | ||
} |
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