summaryrefslogtreecommitdiff
path: root/src/components/Proxy.module.css
diff options
context:
space:
mode:
authorHaishan <[email protected]>2020-06-03 22:47:26 +0800
committerHaishan <[email protected]>2020-06-04 00:05:57 +0800
commitbf17be6a65c058546424a63769bf2b316b21a4a3 (patch)
tree87bce619788c31f2b0f3431e5088b3e0dcd65093 /src/components/Proxy.module.css
parent07082c5b0906011ae43066e590d4b78506c0cfe8 (diff)
added: test latency button for each proxy group
Diffstat (limited to 'src/components/Proxy.module.css')
-rw-r--r--src/components/Proxy.module.css56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/components/Proxy.module.css b/src/components/Proxy.module.css
deleted file mode 100644
index 089b686..0000000
--- a/src/components/Proxy.module.css
+++ /dev/null
@@ -1,56 +0,0 @@
-.proxy {
- position: relative;
- padding: 5px;
- border-radius: 8px;
- overflow: hidden;
-
- 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;
- }
-}
-
-.proxyType {
- font-family: var(--font-mono);
- font-size: 0.6em;
- @media (--breakpoint-not-small) {
- font-size: 1em;
- }
-}
-
-.row {
- display: flex;
- align-items: center;
- justify-content: space-between;
-}
-
-.proxyName {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- margin-bottom: 5px;
- font-size: 0.85em;
- @media (--breakpoint-not-small) {
- font-size: 1.1em;
- }
-}
-
-.proxySmall {
- .now {
- outline: pink solid 1px;
- }
- width: 12px;
- height: 12px;
- border-radius: 8px;
-}