-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from ZeroDay-Alliance-SNU/fix
Fix Events and others
- Loading branch information
Showing
17 changed files
with
182 additions
and
195 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
name: Cloudflare Pages Deployment | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
cf: | ||
|
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 |
---|---|---|
@@ -1,54 +1,27 @@ | ||
.cardsContainer { | ||
.container { | ||
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%); | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: var(--mantine-spacing-md); | ||
padding: calc(var(--mantine-spacing-xl) * 2); | ||
min-width: 100vw; | ||
margin: 0; | ||
padding: rem(15px) calc(var(--mantine-spacing-xl) * 3) rem(100px) | ||
calc(var(--mantine-spacing-xl) * 3); | ||
} | ||
|
||
.card { | ||
flex: 1 1 calc(33.3333% - var(--mantine-spacing-md)); | ||
background-color: var(--mantine-color-body); | ||
|
||
} | ||
|
||
.rating { | ||
position: absolute; | ||
top: var(--mantine-spacing-xs); | ||
right: rem(12px); | ||
pointer-events: none; | ||
} | ||
|
||
.title { | ||
display: block; | ||
margin-top: var(--mantine-spacing-md); | ||
margin-bottom: rem(5px); | ||
} | ||
|
||
.action { | ||
background-color: var(--mantine-color-gray-0); | ||
.heading { | ||
text-align: center; | ||
padding: var(--mantine-spacing-xl) 0; | ||
} | ||
|
||
.action:hover { | ||
background-color: var(--mantine-color-gray-1); | ||
} | ||
|
||
.footer { | ||
margin-top: var(--mantine-spacing-md); | ||
} | ||
.card { | ||
transition: | ||
transform 150ms ease, | ||
box-shadow 150ms ease; | ||
|
||
/* Media queries for responsive design */ | ||
@media (max-width: 768px) { | ||
.card { | ||
flex: 1 1 100%; | ||
&:hover { | ||
box-shadow: var(--mantine-shadow-md); | ||
} | ||
} | ||
.title1 { | ||
background: linear-gradient(90deg, #272626 22%, #25424a 68%, #37616c 84%); | ||
color: var(--mantine-color-white); | ||
font-size: 52px; | ||
font-family: | ||
Greycliff CF, | ||
var(--mantine-font-family); | ||
|
||
} | ||
.title { | ||
font-family: "Greycliff CF", var(--mantine-font-family); | ||
font-weight: bold; | ||
} |
Oops, something went wrong.