mirror of
https://github.com/Nezumi-2711/surCord.git
synced 2026-09-22 13:48:38 +00:00
use monospace font for code (#26)
* use monospace font for codeblocks * use monospace font for code * use monospace font for code * fix comment * this is not needed
This commit is contained in:
@@ -90,8 +90,6 @@ backdrop-filter: blur(10px);
|
||||
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.483);
|
||||
border: 1px solid var(--surCordBorder);
|
||||
background: rgba(41, 38, 39, 0.276);
|
||||
font-family: 'SF Mono', SFMono-Regular, ui-monospace,
|
||||
'DejaVu Sans Mono', Menlo, Consolas, monospace;
|
||||
}
|
||||
.embedFull-1HGV2S {
|
||||
background-color: transparent;
|
||||
@@ -101,8 +99,6 @@ backdrop-filter: blur(10px);
|
||||
background: rgba(231, 234, 237, 0.436) !important;
|
||||
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.146);
|
||||
border: 1px solid rgba(249, 249, 249, 0.772);
|
||||
font-family: 'SF Mono', SFMono-Regular, ui-monospace,
|
||||
'DejaVu Sans Mono', Menlo, Consolas, monospace;
|
||||
}
|
||||
}
|
||||
/* Nitro Claim a Gift, Join a Server */
|
||||
|
||||
+13
-11
@@ -4,19 +4,21 @@
|
||||
> Designed by Apple in California - SAN FRANSISCO DISPLAY - https://developer.apple.com/fonts/
|
||||
*/
|
||||
|
||||
.platform-osx * {
|
||||
font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
|
||||
code,
|
||||
.inlineCode-ERyvy_,
|
||||
.after_inlineCode-2_JXPm,
|
||||
.before_inlineCode-1zngJj,
|
||||
.codeLine-2C-9aH,
|
||||
.codeBlockText-28BOxV {
|
||||
font-family: "SF Mono", mono, monospace;
|
||||
}
|
||||
|
||||
::placeholder, ::-webkit-input-placeholder,
|
||||
body, button, input, select, textarea, .base-ZDDK0g, .headerText-1qIDDT, .header-Imy05m, .container-q97qHp, .name-3Uvkvr, .text-md-bold-22PzaZ, .text-md-semibold-3xVVGu, .text-sm-medium-3Pz3rB, .text-sm-normal-3Zj3Iv, .text-xs-medium-2LRpEj, .text-xs-normal-3SiVjE {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
|
||||
text-rendering: optimizeLegibility !important;
|
||||
// font-weight: bold;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.platform-linux *,
|
||||
.platform-win * {
|
||||
font-family: "SF Pro Display", sans-serif !important;
|
||||
text-rendering: optimizeLegibility !important;
|
||||
// font-weight: bold;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
@import url("https://v1.fontapi.ir/css/SFProDisplay");
|
||||
@import url("https://raw.githubusercontent.com/czarhex/SanFranciscoFontCSS/main/SFFont.css");
|
||||
|
||||
+13
-11
@@ -77,22 +77,24 @@
|
||||
/* Uncomment the line below to use Apple's Emoji font */
|
||||
/* @import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Apple.css); */
|
||||
|
||||
.platform-osx * {
|
||||
font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
|
||||
code,
|
||||
.inlineCode-ERyvy_,
|
||||
.after_inlineCode-2_JXPm,
|
||||
.before_inlineCode-1zngJj,
|
||||
.codeLine-2C-9aH,
|
||||
.codeBlockText-28BOxV {
|
||||
font-family: "SF Mono", mono, monospace;
|
||||
}
|
||||
|
||||
::placeholder, ::-webkit-input-placeholder,
|
||||
body, button, input, select, textarea, .base-ZDDK0g, .headerText-1qIDDT, .header-Imy05m, .container-q97qHp, .name-3Uvkvr, .text-md-bold-22PzaZ, .text-md-semibold-3xVVGu, .text-sm-medium-3Pz3rB, .text-sm-normal-3Zj3Iv, .text-xs-medium-2LRpEj, .text-xs-normal-3SiVjE {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
|
||||
text-rendering: optimizeLegibility !important;
|
||||
/* font-weight: bold; */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.platform-linux *,
|
||||
.platform-win * {
|
||||
font-family: "SF Pro Display", sans-serif !important;
|
||||
text-rendering: optimizeLegibility !important;
|
||||
/* font-weight: bold; */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
@import url("https://v1.fontapi.ir/css/SFProDisplay");
|
||||
@import url("https://raw.githubusercontent.com/czarhex/SanFranciscoFontCSS/main/SFFont.css");
|
||||
|
||||
/*
|
||||
/////////////////////////////////////////
|
||||
|
||||
+13
-3
@@ -56,12 +56,22 @@
|
||||
/* Uncomment the line below to use Apple's Emoji font */
|
||||
/* @import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Apple.css); */
|
||||
|
||||
* {
|
||||
font-family: "SF Pro Display", sans-serif !important;
|
||||
code,
|
||||
.inlineCode-ERyvy_,
|
||||
.after_inlineCode-2_JXPm,
|
||||
.before_inlineCode-1zngJj,
|
||||
.codeLine-2C-9aH,
|
||||
.codeBlockText-28BOxV {
|
||||
font-family: "SF Mono", mono, monospace;
|
||||
}
|
||||
|
||||
::placeholder, ::-webkit-input-placeholder,
|
||||
body, button, input, select, textarea, .base-ZDDK0g, .headerText-1qIDDT, .header-Imy05m, .container-q97qHp, .name-3Uvkvr, .text-md-bold-22PzaZ, .text-md-semibold-3xVVGu, .text-sm-medium-3Pz3rB, .text-sm-normal-3Zj3Iv, .text-xs-medium-2LRpEj, .text-xs-normal-3SiVjE {
|
||||
font-family: "SF Pro Display", sans-serif;
|
||||
text-rendering: optimizeLegibility !important;
|
||||
/* font-weight: bold; */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
@import url("https://v1.fontapi.ir/css/SFProDisplay");
|
||||
@import url("https://raw.githubusercontent.com/czarhex/SanFranciscoFontCSS/main/SFFont.css");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user