Last active
February 16, 2023 13:32
-
-
Save giovanigenerali/26a9b95355604d7f2d315104c94c2baf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ui.top.inverted.labeled.menu .title.glow { | |
background: radial-gradient(450px 250px at top left,#000,rgba(90,80,118,0)) | |
} | |
.two.column.diff .diff.line:not(.keep) .line.wrapper:not(.empty) .left.line.content { | |
background-color: #FBDDDD; /* rgba(91, 220, 114, 0.20) on white */ | |
} | |
.two.column.diff .diff.line.base:not(.keep) .line.wrapper:not(.empty) .left.line.content, | |
.two.column.diff .diff.line.whitespace:not(.keep) .line.wrapper:not(.empty) .left.line.content { | |
background-color: #FFF7F7; /* rgba(91, 220, 114, 0.05) on white */ | |
} | |
.two.column.diff .diff.line:not(.keep) .line.wrapper:not(.empty) .right.line.content { | |
background-color: #DDF7E2; /* rgba(91, 220, 114, 0.20) on white */ | |
} | |
.two.column.diff .diff.line.base:not(.keep) .line.wrapper:not(.empty) .right.line.content, | |
.two.column.diff .diff.line.whitespace:not(.keep) .line.wrapper:not(.empty) .right.line.content { | |
background-color: #EFFCF1; /* rgba(91, 220, 114, 0.05) on white */ | |
} | |
.two.column.diff .diff.line .left.line.content .delta { | |
background-color: rgba(240, 92, 92, 0.30); | |
} | |
.two.column.diff .diff.line.base .left.line.content .delta, | |
.two.column.diff .diff.line.whitespace .left.line.content .delta { | |
background-color: rgba(240, 92, 92, 0.15); | |
} | |
.two.column.diff .diff.line .right.line.content .delta { | |
background-color: rgba(91, 220, 114, 0.30); | |
} | |
.two.column.diff .diff.line.base .right.line.content .delta, | |
.two.column.diff .diff.line.whitespace .right.line.content .delta { | |
background-color: rgba(91, 220, 114, 0.15); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment