-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathstyles.module.css
More file actions
105 lines (88 loc) · 1.58 KB
/
styles.module.css
File metadata and controls
105 lines (88 loc) · 1.58 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.notice {
border: 1px solid var(--ifm-color-emphasis-300);
border-radius: 12px;
padding: 1rem 1.25rem;
margin-bottom: 1.5rem;
background: var(--ifm-background-surface-color);
}
.noticePrelive {
border-color: #d97706;
background: rgba(217, 119, 6, 0.08);
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
}
.eyebrow {
margin: 0;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--ifm-color-emphasis-700);
}
.title {
margin: 0.35rem 0 0;
font-size: 1.1rem;
}
.body {
margin: 0.75rem 0 0;
color: var(--ifm-color-emphasis-800);
}
.body p {
margin: 0;
}
.body > * + * {
margin-top: 0.75rem;
}
.body a {
font-weight: 600;
}
.list {
margin: 0;
padding-left: 1.25rem;
}
.list li + li {
margin-top: 0.35rem;
}
.switcher {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.25rem;
border-radius: 999px;
background: var(--ifm-color-emphasis-200);
}
.switcherLink {
padding: 0.45rem 0.85rem;
border-radius: 999px;
color: var(--ifm-color-emphasis-900);
font-weight: 600;
text-decoration: none;
}
.switcherLink:hover {
text-decoration: none;
background: rgba(255, 255, 255, 0.5);
}
.switcherLinkActive {
background: var(--ifm-color-primary);
color: #fff;
}
.switcherLinkDisabled {
opacity: 0.55;
cursor: not-allowed;
pointer-events: none;
}
@media (max-width: 640px) {
.switcher {
width: 100%;
justify-content: space-between;
}
.switcherLink {
flex: 1;
text-align: center;
}
}