Welcome to mirror list, hosted at ThFree Co, Russian Federation.

custom.css « css « _static « mRemoteNGDocumentation - github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80a0db147cd62a02952242d93374dcc141a157b1 (plain)
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

body {
  --themecolor: #4F8AFF;
  --linkcolor: #343131;
  color: var(--themecolor);
}

.wy-nav-content {
  max-width: none;
  background-color: #E9ECEF;
}

.wy-side-nav-search {
  background-color: var(--themecolor);
}

.wy-nav-top {
  background-color: var(--themecolor);
}

.caption-text {
  color: var(--themecolor);
}

.reference_internal {
  color: var(--themecolor);
}

a:link {
  color: var(--linkcolor);
}

a:visited {
  color: var(--linkcolor);
}

a:hover {
  color: var(--linkcolor);
}

a:active {
  color: var(--linkcolor);
}

a {
  color: var(--linkcolor);
  text-decoration: underline;
}