aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/stylesheets/neoteroi-cards.css
diff options
context:
space:
mode:
author苏向夜 <fu050409@163.com>2024-01-25 17:46:34 +0800
committer苏向夜 <fu050409@163.com>2024-01-25 17:46:34 +0800
commitc4eb3ae7a74c7c6881540d7d04502600197a8b2a (patch)
treec920c29c383da4d496a0f646e5d4d0f5de10a406 /docs/stylesheets/neoteroi-cards.css
parent3c3e121bc845573a2d2408c0db6be6f841fd8efc (diff)
downloadinfini-c4eb3ae7a74c7c6881540d7d04502600197a8b2a.tar.gz
infini-c4eb3ae7a74c7c6881540d7d04502600197a8b2a.zip
:fire: feat(docs): remove old documents
Diffstat (limited to 'docs/stylesheets/neoteroi-cards.css')
-rw-r--r--docs/stylesheets/neoteroi-cards.css102
1 files changed, 0 insertions, 102 deletions
diff --git a/docs/stylesheets/neoteroi-cards.css b/docs/stylesheets/neoteroi-cards.css
deleted file mode 100644
index 5a5152f5..00000000
--- a/docs/stylesheets/neoteroi-cards.css
+++ /dev/null
@@ -1,102 +0,0 @@
-.nt-cards.nt-grid {
- display: grid;
- grid-auto-columns: 1fr;
- gap: 0.5rem;
- max-width: 100vw;
- overflow-x: auto;
- padding: 1px;
-}
-.nt-cards.nt-grid.cols-1 {
- grid-template-columns: repeat(1, 1fr);
-}
-.nt-cards.nt-grid.cols-2 {
- grid-template-columns: repeat(2, 1fr);
-}
-.nt-cards.nt-grid.cols-3 {
- grid-template-columns: repeat(3, 1fr);
-}
-.nt-cards.nt-grid.cols-4 {
- grid-template-columns: repeat(4, 1fr);
-}
-.nt-cards.nt-grid.cols-5 {
- grid-template-columns: repeat(5, 1fr);
-}
-.nt-cards.nt-grid.cols-6 {
- grid-template-columns: repeat(6, 1fr);
-}
-
-@media only screen and (max-width: 400px) {
- .nt-cards.nt-grid {
- grid-template-columns: repeat(1, 1fr) !important;
- }
-}
-.nt-card {
- box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
-}
-.nt-card:hover {
- box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 3px 1px -2px rgba(0, 0, 0, 0.3), 0 1px 5px 0 rgba(0, 0, 0, 0.22);
-}
-
-[data-md-color-scheme=slate] .nt-card {
- box-shadow: 0 2px 2px 0 rgba(4, 40, 33, 0.14), 0 3px 1px -2px rgba(40, 86, 94, 0.47), 0 1px 5px 0 rgba(139, 252, 255, 0.64);
-}
-[data-md-color-scheme=slate] .nt-card:hover {
- box-shadow: 0 2px 2px 0 rgba(0, 255, 206, 0.14), 0 3px 1px -2px rgba(33, 156, 177, 0.47), 0 1px 5px 0 rgba(96, 251, 255, 0.64);
-}
-
-.nt-card > a {
- color: var(--md-default-fg-color);
-}
-
-.nt-card > a > div {
- cursor: pointer;
-}
-
-.nt-card {
- padding: 5px;
- margin-bottom: 0.5rem;
-}
-
-.nt-card-title {
- font-size: 1rem;
- font-weight: bold;
- margin: 4px 0 8px 0;
- line-height: 22px;
-}
-
-.nt-card-content {
- padding: 0.4rem 0.8rem 0.8rem 0.8rem;
-}
-
-.nt-card-text {
- font-size: 14px;
- padding: 0;
- margin: 0;
-}
-
-.nt-card .nt-card-image {
- text-align: center;
- border-radius: 2px;
- background-position: center center;
- background-size: cover;
- background-repeat: no-repeat;
- min-height: 120px;
-}
-
-.nt-card .nt-card-image.tags img {
- margin-top: 12px;
-}
-
-.nt-card .nt-card-image img {
- height: 105px;
- margin-top: 5px;
-}
-
-.nt-card a:hover,
-.nt-card a:focus {
- color: var(--md-accent-fg-color);
-}
-
-.nt-card h2 {
- margin: 0;
-}