blob: 8e891946db448de4571dad3754fc5122a5742231 (
plain) (
blame)
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
|
/*
* Adds always visible scrollbars on OSX so that user knows the content is scrollable
* Source: https://davidwalsh.name/osx-overflow
*/
::-webkit-scrollbar {
-webkit-appearance: none;
width: 4px;
height: 2px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
#documentation {
p {
line-height: 1.5;
}
a {
color: #1d5cde; // linkBlue
}
.comment {
p {
margin: 0px;
}
}
.typeTooltip {
border: 1px solid lightgray;
opacity: 1;
}
}
code {
border: 1px solid #e3eefe;
font-family: 'Roboto Mono';
background-color: #f2f6ff !important; // lightBlue
}
|