Browse
For agents
About
Code Block Pro – Beautiful Syntax Highlighting
/
1.27.3
Code Block Pro – Beautiful Syntax Highlighting
v1.27.3
Switch version
1.27.1
1.27.2
1.27.3
1.27.4
1.27.5
1.27.6
1.27.7
1.28.0
1.3.0
1.4.0
1.5.0
1.5.1
1.5.2
1.6.0
1.7.0
1.8.0
1.9.0
1.9.1
1.9.2
1.9.3
trunk
1.1.0
1.10.0
1.11.0
1.11.1
All 63 releases
Overview
Code
code-block-pro
/
build
/
shiki
/
samples
/
sass.sample
sass.sample
in Code Block Pro – Beautiful Syntax Highlighting 1.27.3, at build/shiki/samples/sass.sample
28 lines
495 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/* This CSS will print because %message-shared is extended. */
2
%message-shared
3
border: 1px solid #ccc
4
padding: 10px
5
color: #333
6
7
// This CSS won't print because %equal-heights is never extended.
8
%equal-heights
9
display: flex
10
flex-wrap: wrap
11
12
.message
13
@extend %message-shared
14
15
.success
16
@extend %message-shared
17
border-color: green
18
19
.error
20
@extend %message-shared
21
border-color: red
22
23
.warning
24
@extend %message-shared
25
border-color: yellow
26
27
// From https://sass-lang.com/guide/
28