Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
rust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orestis.malaspin
rust
Commits
4e5d1dfb
There was a problem fetching the pipeline summary.
Commit
4e5d1dfb
authored
6 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
change css for code
parent
3da57245
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+1
-3
1 addition, 3 deletions
Makefile
reveal.js/lib/css/default.css
+99
-0
99 additions, 0 deletions
reveal.js/lib/css/default.css
reveal.js/lib/css/vs.css
+68
-0
68 additions, 0 deletions
reveal.js/lib/css/vs.css
with
168 additions
and
3 deletions
Makefile
+
1
−
3
View file @
4e5d1dfb
REVEALOPRIONS
=
-t
revealjs
REVEALOPRIONS
=
-t
revealjs
REVEALOPRIONS
+=
--template
./default.revealjs
REVEALOPRIONS
+=
--template
./default.revealjs
REVEALOPRIONS
+=
-V
theme
=
simple
# REVEALOPRIONS += -V center=true
REVEALOPRIONS
+=
-V
margin
=
0
REVEALOPRIONS
+=
-V
margin
=
0
# REVEALOPRIONS += -V minScale=0.2
# REVEALOPRIONS += -V minScale=0.2
# REVEALOPRIONS += -V maxScale=2.0
# REVEALOPRIONS += -V maxScale=2.0
...
@@ -11,7 +9,7 @@ REVEALOPRIONS += -V include-after="<script src="js/playRust.js"></script> \
...
@@ -11,7 +9,7 @@ REVEALOPRIONS += -V include-after="<script src="js/playRust.js"></script> \
<script src="
js/remote-diagrams.js
"></script>
\
<script src="
js/remote-diagrams.js
"></script>
\
<script src="
js/em-artiste.js
"></script>
\
<script src="
js/em-artiste.js
"></script>
\
<script src="
reveal.js/plugin/highlight/highlight.js
"></script>"
<script src="
reveal.js/plugin/highlight/highlight.js
"></script>"
REVEALOPRIONS
+=
-V
header-includes
=
"<link rel="
stylesheet
" href="
reveal.js/lib/css/
zenburn
.css
" >
\
REVEALOPRIONS
+=
-V
header-includes
=
"<link rel="
stylesheet
" href="
reveal.js/lib/css/
vs
.css
" >
\
<link rel="
stylesheet
" href="
reveal.js/css/theme/simple.css
" id="
theme
">
\
<link rel="
stylesheet
" href="
reveal.js/css/theme/simple.css
" id="
theme
">
\
<link rel="
stylesheet
" href="
css/console.css
" id="
theme
">
\
<link rel="
stylesheet
" href="
css/console.css
" id="
theme
">
\
<script src="
jquery/dist/jquery.min.js
"></script>"
<script src="
jquery/dist/jquery.min.js
"></script>"
...
...
This diff is collapsed.
Click to expand it.
reveal.js/lib/css/default.css
0 → 100644
+
99
−
0
View file @
4e5d1dfb
/*
Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
*/
.hljs
{
display
:
block
;
overflow-x
:
auto
;
padding
:
0.5em
;
background
:
#F0F0F0
;
}
/* Base color: saturation 0; */
.hljs
,
.hljs-subst
{
color
:
#444
;
}
.hljs-comment
{
color
:
#888888
;
}
.hljs-keyword
,
.hljs-attribute
,
.hljs-selector-tag
,
.hljs-meta-keyword
,
.hljs-doctag
,
.hljs-name
{
font-weight
:
bold
;
}
/* User color: hue: 0 */
.hljs-type
,
.hljs-string
,
.hljs-number
,
.hljs-selector-id
,
.hljs-selector-class
,
.hljs-quote
,
.hljs-template-tag
,
.hljs-deletion
{
color
:
#880000
;
}
.hljs-title
,
.hljs-section
{
color
:
#880000
;
font-weight
:
bold
;
}
.hljs-regexp
,
.hljs-symbol
,
.hljs-variable
,
.hljs-template-variable
,
.hljs-link
,
.hljs-selector-attr
,
.hljs-selector-pseudo
{
color
:
#BC6060
;
}
/* Language color: hue: 90; */
.hljs-literal
{
color
:
#78A960
;
}
.hljs-built_in
,
.hljs-bullet
,
.hljs-code
,
.hljs-addition
{
color
:
#397300
;
}
/* Meta color: hue: 200 */
.hljs-meta
{
color
:
#1f7199
;
}
.hljs-meta-string
{
color
:
#4d99bf
;
}
/* Misc effects */
.hljs-emphasis
{
font-style
:
italic
;
}
.hljs-strong
{
font-weight
:
bold
;
}
This diff is collapsed.
Click to expand it.
reveal.js/lib/css/vs.css
0 → 100644
+
68
−
0
View file @
4e5d1dfb
/*
Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
*/
.hljs
{
display
:
block
;
overflow-x
:
auto
;
padding
:
0.5em
;
background
:
white
;
color
:
black
;
}
.hljs-comment
,
.hljs-quote
,
.hljs-variable
{
color
:
#008000
;
}
.hljs-keyword
,
.hljs-selector-tag
,
.hljs-built_in
,
.hljs-name
,
.hljs-tag
{
color
:
#00f
;
}
.hljs-string
,
.hljs-title
,
.hljs-section
,
.hljs-attribute
,
.hljs-literal
,
.hljs-template-tag
,
.hljs-template-variable
,
.hljs-type
,
.hljs-addition
{
color
:
#a31515
;
}
.hljs-deletion
,
.hljs-selector-attr
,
.hljs-selector-pseudo
,
.hljs-meta
{
color
:
#2b91af
;
}
.hljs-doctag
{
color
:
#808080
;
}
.hljs-attr
{
color
:
#f00
;
}
.hljs-symbol
,
.hljs-bullet
,
.hljs-link
{
color
:
#00b0e8
;
}
.hljs-emphasis
{
font-style
:
italic
;
}
.hljs-strong
{
font-weight
:
bold
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment