-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.user.css
25 lines (22 loc) · 892 Bytes
/
style.user.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
/* ==UserStyle==
@name Pretty Codewars
@version 3.0.0
@namespace github.com/goodjack/pretty-codewars
@description Larger font size, increased line height, and the beautiful Fira Code font.
@author goodjack <[email protected]> (https://github.com/goodjack)
@homepageURL https://github.com/goodjack/pretty-codewars
@supportURL https://github.com/goodjack/pretty-codewars/issues
@updateURL https://raw.githubusercontent.com/goodjack/pretty-codewars/master/style.user.css
@license CC-BY-4.0
==/UserStyle== */
@-moz-document domain("codewars.com") {
@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap");
.CodeMirror pre.CodeMirror-line {
font-size: 17px;
line-height: 1.6;
font-family: "Fira Code";
}
code {
font-family: "Fira Code" !important;
}
}