forked from supermamon/Reposi3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (62 loc) · 1.32 KB
/
style.css
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
body {
margin: 1em;
}
.card {
margin-bottom: 1em;
}
.thumbnail {
margin-bottom: 2em;;
}
.list-group {
margin-bottom: 2em;
}
.disable-hover {
pointer-events: none;
}
.link-item {
list-style-type: none;
padding: 17px 15px;
display: block;
color: #4f89bb !important;
text-align: left;
}
.link-item:hover {
border: 1px solid #ddd;
background-color: #f5f5f5;
}
html.can-touch .link-item:hover{ /* disable hover effect when input is touch */
background-color: #fff;
}
html.can-touch .link-item:active{ /* disable hover effect when input is touch */
background-color: #f5f5f5;
}
.fa {
font-size: 16px;
margin-left: 5px;
margin-right: 10px;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #1f1f1f;
color: white;
}
.card-header {
background-color: #2f2f2f;
}
.card-body {
background-color: #1f1f1f;
}
.jumbotron {
background-color: #2f2f2f;
}
.list-group-item {
background-color: #1f1f1f;
border-color: #2f2f2f;;
}
html.can-touch .link-item:hover{ /* disable hover effect when input is touch */
background-color: #1f1f1f;
}
html.can-touch .link-item:active{ /* disable hover effect when input is touch */
background-color: #1f1f1f;
}
}