This repository was archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathuserstyle.css
More file actions
149 lines (104 loc) · 3.67 KB
/
userstyle.css
File metadata and controls
149 lines (104 loc) · 3.67 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* Remove stuff */
.xlarge-only, #integrationstab_header, #librarytab_header, .button-share-to-team {
display: none !important;
}
/* Backgrounds */
#addContentPlaceholderFX .button-icon-left, .menu, .item-with-visuals, .headerInfo-expanded-scroller, .popover, div.modal.small, .u100Header-banner, #feedlyDialogFramePart, .feed-header, #formActions {
background: #212121 !important;
}
#searchBarFX, #feedlyTabs, .sliderContainer, #headerBarFX, .subscriptionContentsHolder, .u0:hover, .edition, .header.sticky, .headerInfo, #headerBarFX header {
background: #303030 !important;
}
#mainBarFX, .floatingEntryScroller, .entryholder, #feedlyFrame, #feedlyPageHolderFX, body, .selected:hover {
background: #444242 !important;
}
/* Icons */
.mark-as-read-button, .button-refresh, .feedly-logo, .headerInfo-expanded-img, .button-customize-page, .action.requiresEditMode.hoverableIcon, .button-dropdown .no-border.secondary.button-icon-only, .icon-fx-rss-ios-sm-black, .icon-fx-google-plus-ios-sm-black, .condensed-tools, .close-button, .empty-preview, .tertiary:not(.accent), .icon-fx-light-gear-ios-md-black, .icon-fx-laurel-ios-sm-black, .icon-fx-add-ios-sm-black {
filter: invert(100%) !important;
-webkit-filter: invert(100%) !important;
}
/* left and right arrows in article mode */
.slideBumper {
background: #E0E0E0 !important;
border-radius: 50% !important;
}
/* Text */
h1, h2, .heading, a:hover, .item-header, .editionInfo {
color: #EEE !important;
}
h3, h4, .title, a, .h2Link, label, .theme-panel-label, .subscription-status, .card-header {
color: #DDD !important;
}
.summary, p, .subscriptionContentsTitle, .item, td, section, div {
color: #BBB !important;
}
.metadata, .engagement, .action {
color: #AAA !important;
}
.read a, .read div, .read span {
color: #888 !important;
}
input::placeholder {
color: #212121 !important;
}
/* Unread count next to the check mark, color already inverted so need different color */
.mark-as-read-button span {
color: #353535 !important;
}
a {
font-weight: bold !important;
}
/* Sidebar items */
.header:not(.row), .feedIndex, .moreHandle {
transition-duration: .25s !important;
border-radius: 3px !important;
padding-right: 6px !important;
}
.header:hover:not(.row), .feedIndex:hover {
background: #555 !important;
margin-left: 3px !important;
}
.moreHandle:hover {
background: #555 !important;
}
/* Fix width in magazine view */
.col-xl-9 {
width: 100% !important;
}
.fx .entry.u4 {
max-width: none !important;
}
/* Buttons */
.giant-mark-as-read, #feedlyTabsUnpin, .visitWebsiteButton, .small.pro.primary, .list-cards .card, .follow {
background: #43a047 !important;
color: #EEE !important;
transition-duration: .4s !important;
box-shadow: none !important;
}
.danger.primary {
color: #EEE !important;
transition-duration: .4s !important;
box-shadow: none !important;
}
.giant-mark-as-read:hover, #feedlyTabsUnpin:hover, .visitWebsiteButton:hover, .small.pro.primary:hover, .list-cards .card:hover, .follow:hover {
background: #2e7d32 !important;
}
/* Title only view */
.read.u0 {
margin-bottom: 1.5px !important;
border-bottom: 1px solid #555 !important;
border-radius: 6px !important;
}
/* NO BORDERS */
* {
border: none !important;
}
body, body * {
/* cleaner font rendering */
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: grayscale;
/* use system fonts for cleaner/faster rendering */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}