From 1106ae36dd331a491abe05ae58bc5c5ac3a166b7 Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Sun, 25 Aug 2024 14:12:55 -0500 Subject: [PATCH] remove unused css (#1563) --- _includes/head.html | 1 - css/nodeinteractive.css | 91 ----------------------------------------- 2 files changed, 92 deletions(-) delete mode 100644 css/nodeinteractive.css diff --git a/_includes/head.html b/_includes/head.html index 4e57b1a2d4..42f2830b30 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -13,7 +13,6 @@ - diff --git a/css/nodeinteractive.css b/css/nodeinteractive.css deleted file mode 100644 index 423d13c824..0000000000 --- a/css/nodeinteractive.css +++ /dev/null @@ -1,91 +0,0 @@ -#nodeinteractive { - max-width: 1024px; - margin-left: 5%; - margin-right: 5%; - border-radius: 7px; - background-color: rgba(231, 238, 219, 0.6); - display: inline-flex; - overflow: hidden; -} - -#nodeinteractive h3 { - font-weight: 100; - font-size: 1.3em; - line-height: 1.2em; -} - -#nodeinteractive p { - font-weight: normal; - font-size: 0.95em; - margin: 3px; -} - -#nodeinteractive-details { - padding: 15px 20px; -} - -#nodeinteractive-details ul { - padding: 0; -} - -#nodeinteractive-details li { - display: inline-flex; - list-style: none; - background: rgba(255, 255, 255, 0.9); - margin-bottom: 5px; - padding: 3px; -} - -#nodeinteractive-details img { - display: block; - width: 70px; - height: 70px; - margin-right: 5px; -} - -#nodeinteractive-details li p { - padding-right: 3px; -} - -#nodeinteractive-details h4 { - padding: 0; - margin: 3px 2px; -} - -#nodeinteractive-img { - width: 300px; -} - -.nodeinteractive-div { - height: 250px; -} - -/* responsive */ - -@media all and (max-width: 899px) { - - #nodeinteractive { - margin-top: 20px; - } - - #nodeinteractive-img { - display: none; - } - -} - -@media all and (max-width: 700px) { - #nodeinteractive img { - display: none; - } - - #nodeinteractive-details { - height: auto; - } - - #nodeinteractive-details h4 { - font-weight: bold; - margin-bottom: 7px; - } - -}