summaryrefslogtreecommitdiff
path: root/src/components/ProxyGroup.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ProxyGroup.module.css')
-rw-r--r--src/components/ProxyGroup.module.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/components/ProxyGroup.module.css b/src/components/ProxyGroup.module.css
new file mode 100644
index 0000000..ec52279
--- /dev/null
+++ b/src/components/ProxyGroup.module.css
@@ -0,0 +1,29 @@
+.header {
+ > h2 {
+ margin-top: 0;
+
+ span:nth-child(2) {
+ font-size: 12px;
+ color: #777;
+ font-weight: normal;
+ margin: 0 0.3em;
+ }
+ }
+}
+
+.list {
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.proxy {
+ width: 300px;
+ padding: 10px 5px;
+ transition: transform 0.2s ease-in-out;
+ &.proxySelectable {
+ cursor: pointer;
+ &:hover {
+ transform: scale(1.1);
+ }
+ }
+}