-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
49 lines (37 loc) · 739 Bytes
/
Copy pathstyles.scss
File metadata and controls
49 lines (37 loc) · 739 Bytes
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
/*-- scss:defaults --*/
$theme: "darkly" !default;
$link-unvisited: Lavender !default;
$link-visited: Plum !default;
$link-hover: PaleTurquoise !default;
a {
&:link {
color: $link-unvisited;
text-decoration: none;
}
&:visited {
color: $link-visited;
}
&:hover, &:focus {
color: $link-hover;
text-decoration: underline;
}
&:active {
color: $link-hover;
}
}
p {
max-width: 70ch; // Limits line length to approximately 65 characters
//margin-left: auto;
//margin-right: auto;
color: Snow;
}
@media (max-width: 600px) {
p {
max-width: 100%;
}
}
/*-- scss:classes --*/
.quarto-title-banner {
background: linear-gradient(
to bottom, #375a7f, #222222) !important;
}