aboutsummaryrefslogtreecommitdiff
path: root/src/components/Card.css
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2022-04-13 19:10:44 -0400
committerGalen Guyer <galen@galenguyer.com>2022-04-13 19:44:24 -0400
commit264e571b0ca34d24f4997c5864a43d4f475e14dc (patch)
tree3ddfb30dbd97dc5c5c3da91a8e1cba4916348190 /src/components/Card.css
parent290e1694efacc8bfea62b78538cb9d40003f62f6 (diff)
full version 2 re-write
Diffstat (limited to 'src/components/Card.css')
-rw-r--r--src/components/Card.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/components/Card.css b/src/components/Card.css
new file mode 100644
index 0000000..cca784b
--- /dev/null
+++ b/src/components/Card.css
@@ -0,0 +1,43 @@
+.cardLink {
+ text-decoration: none;
+ color: black;
+}
+
+.Card {
+ text-decoration: none;
+ color: #000;
+ border: 2px solid #fbd38d;
+ border-radius: 12px;
+ padding: 0px 40px;
+ margin: 24px;
+}
+
+@media screen and (max-width: 600px) {
+ .Card {
+ padding: 0px 20px;
+ margin: 18px;
+ }
+}
+
+.Latest {
+ font-size: 1.8em;
+}
+
+.Diff {
+ color: #666;
+}
+
+.Card:hover {
+ background-color: #ffc869;
+ color: #fff;
+}
+.Card:hover .Diff {
+ color: #fff;
+}
+
+.animate {
+ -moz-transition: color,background-color 0.3s;
+ -webkit-transition: color,background-color 0.3s;
+ -ms-transition: color,background-color 0.3s;
+ transition: color,background-color 0.3s;
+}