-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (48 loc) · 978 Bytes
/
style.css
File metadata and controls
48 lines (48 loc) · 978 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
48
body {
font-family: system-ui, -apple-system;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
position: fixed;
touch-action: none;
}
#overlay {
width: 0;
height: 0;
position: absolute;
}
.addedBackground,
.deletedBackground,
.modifiedBackground {
width: 3px !important;
margin-left: 6px;
transform: translate(-50%, 0);
transition: 0.1s;
}
.addedBackground {
background: rgb(129, 184, 139);
}
.deletedBackground {
background: rgb(202, 75, 81);
}
.modifiedBackground {
background: rgb(102, 175, 224);
}
.addedBackground:hover,
.deletedBackground:hover,
.modifiedBackground:hover {
width: 8px !important;
}
@media (prefers-color-scheme: dark) {
.addedBackground {
background: rgb(88, 124, 12);
}
.deletedBackground {
background: rgb(148, 21, 27);
}
.modifiedBackground {
background: rgb(12, 125, 157);
}
}