-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
81 lines (71 loc) · 1.25 KB
/
popup.css
File metadata and controls
81 lines (71 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body {
width: 320px;
padding: 20px;
margin: 0;
font-family: system-ui, -apple-system, sans-serif;
background: #000;
color: #fff;
}
.container {
display: flex;
flex-direction: column;
gap: 20px;
}
h1 {
margin: 0;
font-size: 18px;
color: #fff;
font-weight: 500;
letter-spacing: -0.02em;
}
.breakpoints {
display: flex;
flex-direction: column;
gap: 4px;
}
.breakpoint-btn {
display: flex;
align-items: center;
gap: 16px;
padding: 10px 12px;
border: none;
border-radius: 6px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
cursor: pointer;
transition: all 0.2s ease;
text-align: left;
width: 100%;
position: relative;
overflow: hidden;
}
.breakpoint-btn:hover {
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.2);
}
.breakpoint-btn:active {
transform: scale(0.98);
}
.prefix {
font-weight: 600;
color: #fff;
min-width: 32px;
font-feature-settings: "tnum";
opacity: 0.5;
}
.size-info {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 1px;
}
.size {
color: #fff;
font-size: 14px;
font-weight: 500;
}
.device {
color: rgba(255, 255, 255, 0.5);
font-size: 13px;
font-feature-settings: "tnum";
}