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; + } +}