-
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
Quarto GHA Workflow Runner
committed
Oct 30, 2024
1 parent
45500e1
commit 9ac3271
Showing
9 changed files
with
39 additions
and
119 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 +1 @@ | ||
0d84271f | ||
08e618b5 |
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
Binary file not shown.
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,49 +1,14 @@ | ||
/***************************************/ | ||
/***** flipcard settings *****/ | ||
/***************************************/ | ||
.flip-card { | ||
background-color: transparent; | ||
width: 150px; | ||
height: 150px; | ||
perspective: 1000px; /* required for 3D effect */ | ||
} | ||
|
||
/* This container is needed to position the front and back side */ | ||
.flip-card-inner { | ||
position: relative; | ||
width: 100%; | ||
height: 100%; | ||
text-align: center; | ||
transition: transform 0.8s; | ||
transform-style: preserve-3d; | ||
} | ||
|
||
/* Do an horizontal flip when you move the mouse over the flip box container */ | ||
.flip-card:hover .flip-card-inner { | ||
transform: rotateY(180deg); | ||
} | ||
|
||
/* Position the front and back side */ | ||
.flip-card-front, .flip-card-back { | ||
position: absolute; | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
-webkit-backface-visibility: hidden; /* Safari */ | ||
backface-visibility: hidden; | ||
} | ||
|
||
/* Style the front side (fallback if image is missing) */ | ||
.flip-card-front { | ||
background-color: #E5E3DE;//white; | ||
color: black; | ||
} | ||
|
||
/* Style the back side */ | ||
.flip-card-back { | ||
background-color: #E5E3DE;//white; | ||
color: black; | ||
transform: rotateY(180deg); | ||
} | ||
.button { | ||
width: 15%; | ||
font: bold 14px Arial; | ||
text-decoration: none; | ||
background-color: #08312a; | ||
color: #00E47C; | ||
margin: 5px; | ||
padding: 10px 14px 10px 14px; | ||
border-top: 1px solid #002b36; | ||
border-right: 2px solid #002b36; | ||
border-bottom: 2px solid #002b36; | ||
border-left: 1px solid #002b36; | ||
border-radius: 4px; | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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