-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyles.module.css
More file actions
86 lines (75 loc) · 1.47 KB
/
styles.module.css
File metadata and controls
86 lines (75 loc) · 1.47 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
82
83
84
85
86
.wrapper {
margin: 1.5rem 0;
}
.card {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
background: var(--quantum-surface);
border: 1px solid var(--quantum-tungsten);
border-radius: var(--radius-md);
transition: border-color 0.2s ease;
}
.card:hover {
border-color: var(--quantum-steel);
}
.icon {
display: flex;
align-items: center;
justify-content: center;
color: var(--quantum-silver);
flex-shrink: 0;
}
.content {
display: flex;
flex-direction: column;
flex: 1;
min-width: 0;
}
.title {
font-family: var(--font-body);
font-size: 0.875rem;
font-weight: 600;
color: var(--quantum-white);
line-height: 1.3;
}
.subtitle {
font-family: var(--font-body);
font-size: 0.75rem;
color: var(--quantum-silver);
line-height: 1.3;
}
.buttons {
display: flex;
gap: 0.5rem;
flex-shrink: 0;
}
.button {
font-family: var(--font-mono);
font-size: 0.75rem;
font-weight: 600;
padding: 0.375rem 0.75rem;
border: 1px solid var(--quantum-tungsten);
border-radius: var(--radius-sm);
background: transparent;
color: var(--quantum-light);
text-decoration: none;
transition: all 0.2s ease;
white-space: nowrap;
}
.button:hover {
border-color: var(--quantum-mist);
background: rgba(152, 152, 159, 0.08);
color: var(--quantum-white);
text-decoration: none;
}
@media screen and (max-width: 500px) {
.card {
flex-wrap: wrap;
}
.buttons {
width: 100%;
justify-content: flex-end;
}
}