summaryrefslogtreecommitdiff
path: root/src/components/proxies/Proxy.module.css
diff options
context:
space:
mode:
authorHaishan <[email protected]>2021-06-06 00:32:24 +0800
committerHaishan <[email protected]>2021-06-06 00:33:22 +0800
commit5ff2f89afb71fd2976c487692ec73085241e09c7 (patch)
treefe7a53d8839b1406e4ff31a2fa8a543669c7693f /src/components/proxies/Proxy.module.css
parent25dbe5eff483bfdceec677b13ad4ec905c5fe566 (diff)
Stop use postcss-nested postcss-extend-rule
Diffstat (limited to 'src/components/proxies/Proxy.module.css')
-rw-r--r--src/components/proxies/Proxy.module.css83
1 files changed, 0 insertions, 83 deletions
diff --git a/src/components/proxies/Proxy.module.css b/src/components/proxies/Proxy.module.css
deleted file mode 100644
index b25948b..0000000
--- a/src/components/proxies/Proxy.module.css
+++ /dev/null
@@ -1,83 +0,0 @@
-.proxy {
- margin: 3px;
- padding: 5px;
- position: relative;
- border-radius: 8px;
- overflow: hidden;
-
- display: flex;
- flex-direction: column;
- justify-content: space-between;
-
- outline: none;
- border: 1px solid transparent;
- &:focus {
- border: 1px solid var(--color-focus-blue);
- }
-
- max-width: 280px;
- @media (--breakpoint-not-small) {
- min-width: 200px;
- border-radius: 10px;
- padding: 10px;
- }
-
- background-color: var(--color-bg-proxy);
- &.now {
- background-color: var(--color-focus-blue);
- color: #ddd;
- }
- &.error {
- opacity: 0.5;
- }
- &.selectable {
- transition: transform 0.2s ease-in-out;
- cursor: pointer;
- &:hover {
- transform: translateY(-2px);
- }
- }
-}
-
-.proxyType {
- font-family: var(--font-mono);
- font-size: 0.6em;
- margin-right: 3px;
- @media (--breakpoint-not-small) {
- font-size: 0.85em;
- }
-}
-
-.row {
- display: flex;
- align-items: center;
- justify-content: space-between;
-}
-
-.proxyName {
- width: 100%;
- margin-bottom: 5px;
- font-size: 0.85em;
- @media (--breakpoint-not-small) {
- font-size: 1em;
- }
-}
-
-.proxySmall {
- width: 13px;
- height: 13px;
- border-radius: 50%;
- border: 1px solid var(--color-background);
-
- &.now {
- border-color: var(--color-text-secondary);
- }
-
- &.selectable {
- transition: transform 0.1s ease-in-out;
- cursor: pointer;
- &:hover {
- transform: scale(1.2);
- }
- }
-}