From 369271a9c3b47ef1a94d89ae1ba4e1452426c92f Mon Sep 17 00:00:00 2001 From: mirzaev Date: Sat, 6 Dec 2025 22:57:00 +0700 Subject: [PATCH] added `server.css` --- css/server.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 css/server.css diff --git a/css/server.css b/css/server.css new file mode 100644 index 0000000..f09b2b7 --- /dev/null +++ b/css/server.css @@ -0,0 +1,36 @@ +@charset "UTF-8"; + +i.icon.server { + position: relative; + width: 16px; + height: 20px; + box-sizing: border-box; + display: block; + border-radius: 3px; + border: 2px solid; + + &::after, + &::before { + position: absolute; + content: ""; + height: 2px; + box-sizing: border-box; + display: block; + background-color: currentColor; + } + + &:before { + top: 2px; + left: 2px; + width: 8px; + border-radius: 3px; + box-shadow: 0 4px 0; + } + + &::after { + bottom: 2px; + left: 5px; + width: 2px; + border-radius: 10px; + } +}