forked from connectbot/connectbot.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (41 loc) · 1.05 KB
/
styles.css
File metadata and controls
49 lines (41 loc) · 1.05 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
@import 'nextra-theme-docs/style.css';
body {
font-family: var(--font-raleway), Arial, sans-serif;
font-size: 1rem;
}
article p {
font-family: var(--font-source-sans), Arial, sans-serif;
margin: 0.75rem 0;
}
.footer-link {
opacity: 0.7;
transition: opacity 0.2s ease-in-out;
}
.footer-link:hover {
opacity: 1;
}
.issue-buttons {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1rem;
}
.issue-button {
display: inline-flex;
align-items: center;
padding: 0.5rem 1rem;
border-radius: 0.375rem;
font-weight: 500;
font-size: 0.875rem;
text-decoration: none;
transition: background-color 0.15s ease;
background-color: hsl(var(--nextra-primary-hue) var(--nextra-primary-saturation) 50% / 0.1);
color: hsl(var(--nextra-primary-hue) var(--nextra-primary-saturation) 50%);
border: 1px solid hsl(var(--nextra-primary-hue) var(--nextra-primary-saturation) 50% / 0.3);
}
.issue-button:hover {
background-color: hsl(var(--nextra-primary-hue) var(--nextra-primary-saturation) 50% / 0.2);
text-decoration: none;
}
@theme {
}