Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-science
community
Open WIN Community
Commits
200effa4
Commit
200effa4
authored
Jun 18, 2021
by
Cassandra Gould van Praag
Browse files
fix sass
parent
341a4cda
Pipeline
#9422
passed with stages
in 1 minute and 43 seconds
Changes
15
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
_sass/color_schemes/dark.scss
0 → 100644
View file @
200effa4
$body-background-color
:
$grey-dk-300
;
$sidebar-color
:
$grey-dk-300
;
$border-color
:
$grey-dk-200
;
$body-text-color
:
$grey-lt-300
;
$body-heading-color
:
$grey-lt-000
;
$nav-child-link-color
:
$grey-dk-000
;
$search-result-preview-color
:
$grey-dk-000
;
$link-color
:
$blue-000
;
$btn-primary-color
:
$blue-200
;
$base-button-color
:
$grey-dk-250
;
$code-background-color
:
$grey-dk-250
;
$search-background-color
:
$grey-dk-250
;
$table-background-color
:
$grey-dk-250
;
$feedback-color
:
darken
(
$sidebar-color
,
3%
);
_sass/color_schemes/light.scss
0 → 100644
View file @
200effa4
_sass/support/_functions.scss
0 → 100644
View file @
200effa4
@function
rem
(
$size
,
$unit
:
""
)
{
$remSize
:
$size
/
$root-font-size
;
@if
(
$unit
==
false
)
{
@return
#{
$remSize
}
;
}
@else
{
@return
#{
$remSize
}
rem
;
}
}
_sass/support/_variables 2.scss
0 → 100644
View file @
200effa4
//
// Typography
//
$body-font-family
:
system-ui
,
-
apple-system
,
BlinkMacSystemFont
,
"Segoe UI"
,
Roboto
,
"Helvetica Neue"
,
Arial
,
sans-serif
!
default
;
$mono-font-family
:
"SFMono-Regular"
,
Menlo
,
Consolas
,
Monospace
!
default
;
$root-font-size
:
16px
!
default
;
// Base font-size for rems
$body-line-height
:
1
.4
!
default
;
$content-line-height
:
1
.6
!
default
;
$body-heading-line-height
:
1
.25
!
default
;
//
// Font size
// `-sm` suffix is the size at the small (and above) media query
//
$font-size-1
:
9px
!
default
;
$font-size-1-sm
:
10px
!
default
;
$font-size-2
:
11px
!
default
;
//h4 - uppercased!, h6 not uppercased, text-small
$font-size-3
:
12px
!
default
;
//h5
$font-size-4
:
14px
!
default
;
$font-size-5
:
16px
!
default
;
//h3
$font-size-6
:
18px
!
default
;
//h2
$font-size-7
:
24px
!
default
;
$font-size-8
:
32px
!
default
;
//h1
$font-size-9
:
36px
!
default
;
$font-size-10
:
42px
!
default
;
$font-size-10-sm
:
48px
!
default
;
//
// Colors
//
$white
:
#fff
!
default
;
$grey-dk-000
:
#959396
!
default
;
$grey-dk-100
:
#5c5962
!
default
;
$grey-dk-200
:
#44434d
!
default
;
$grey-dk-250
:
#302d36
!
default
;
$grey-dk-300
:
#27262b
!
default
;
$grey-lt-000
:
#f5f6fa
!
default
;
$grey-lt-100
:
#eeebee
!
default
;
$grey-lt-200
:
#ecebed
!
default
;
$grey-lt-300
:
#e6e1e8
!
default
;
$purple-000
:
#7253ed
!
default
;
$purple-100
:
#5e41d0
!
default
;
$purple-200
:
#4e26af
!
default
;
$purple-300
:
#381885
!
default
;
$blue-000
:
#2c84fa
!
default
;
$blue-100
:
#2869e6
!
default
;
$blue-200
:
#264caf
!
default
;
$blue-300
:
#183385
!
default
;
$green-000
:
#41d693
!
default
;
$green-100
:
#11b584
!
default
;
$green-200
:
#009c7b
!
default
;
$green-300
:
#026e57
!
default
;
$yellow-000
:
#ffeb82
!
default
;
$yellow-100
:
#fadf50
!
default
;
$yellow-200
:
#f7d12e
!
default
;
$yellow-300
:
#e7af06
!
default
;
$red-000
:
#f77e7e
!
default
;
$red-100
:
#f96e65
!
default
;
$red-200
:
#e94c4c
!
default
;
$red-300
:
#dd2e2e
!
default
;
$body-background-color
:
$white
!
default
;
$sidebar-color
:
$grey-lt-000
!
default
;
$search-background-color
:
$white
!
default
;
$table-background-color
:
$white
!
default
;
$code-background-color
:
$grey-lt-000
!
default
;
$feedback-color
:
darken
(
$sidebar-color
,
3%
)
!
default
;
$body-text-color
:
$grey-dk-100
!
default
;
$body-heading-color
:
$grey-dk-300
!
default
;
$search-result-preview-color
:
$grey-dk-000
!
default
;
$nav-child-link-color
:
$grey-dk-100
!
default
;
$link-color
:
$purple-000
!
default
;
$btn-primary-color
:
$purple-100
!
default
;
$base-button-color
:
#f7f7f7
!
default
;
//
// Spacing
//
$spacing-unit
:
1rem
;
// 1rem == 16px
$spacers
:
(
sp-0
:
0
,
sp-1
:
$spacing-unit
*
0
.25
,
sp-2
:
$spacing-unit
*
0
.5
,
sp-3
:
$spacing-unit
*
0
.75
,
sp-4
:
$spacing-unit
,
sp-5
:
$spacing-unit
*
1
.5
,
sp-6
:
$spacing-unit
*
2
,
sp-7
:
$spacing-unit
*
2
.5
,
sp-8
:
$spacing-unit
*
3
,
sp-9
:
$spacing-unit
*
3
.5
,
sp-10
:
$spacing-unit
*
4
,
)
!
default
;
$sp-1
:
map-get
(
$spacers
,
sp-1
)
!
default
;
// 0.25 rem == 4px
$sp-2
:
map-get
(
$spacers
,
sp-2
)
!
default
;
// 0.5 rem == 8px
$sp-3
:
map-get
(
$spacers
,
sp-3
)
!
default
;
// 0.75 rem == 12px
$sp-4
:
map-get
(
$spacers
,
sp-4
)
!
default
;
// 1 rem == 16px
$sp-5
:
map-get
(
$spacers
,
sp-5
)
!
default
;
// 1.5 rem == 24px
$sp-6
:
map-get
(
$spacers
,
sp-6
)
!
default
;
// 2 rem == 32px
$sp-7
:
map-get
(
$spacers
,
sp-7
)
!
default
;
// 2.5 rem == 40px
$sp-8
:
map-get
(
$spacers
,
sp-8
)
!
default
;
// 3 rem == 48px
$sp-9
:
map-get
(
$spacers
,
sp-9
)
!
default
;
// 3.5 rem == 56px
$sp-10
:
map-get
(
$spacers
,
sp-10
)
!
default
;
// 4 rem == 64px
//
// Borders
//
$border
:
1px
solid
!
default
;
$border-radius
:
4px
!
default
;
$border-color
:
$grey-lt-100
!
default
;
//
// Grid system
//
$gutter-spacing
:
$sp-6
!
default
;
$gutter-spacing-sm
:
$sp-4
!
default
;
$nav-width
:
264px
!
default
;
$nav-width-md
:
248px
!
default
;
$nav-list-item-height
:
$sp-6
!
default
;
$nav-list-item-height-sm
:
$sp-8
!
default
;
$nav-list-expander-right
:
true
;
$content-width
:
800px
!
default
;
$header-height
:
60px
!
default
;
$search-results-width
:
$content-width
-
$nav-width
!
default
;
$transition-duration
:
400ms
;
//
// Media queries in pixels
//
$media-queries
:
(
xs
:
320px
,
sm
:
500px
,
md
:
$content-width
,
lg
:
$content-width
+
$nav-width
,
xl
:
1400px
,
)
!
default
;
_sass/support/_variables.scss
View file @
200effa4
...
...
@@ -10,6 +10,24 @@ $body-line-height: 1.4 !default;
$content-line-height
:
1
.6
!
default
;
$body-heading-line-height
:
1
.25
!
default
;
//
// Font size
// `-sm` suffix is the size at the small (and above) media query
//
$font-size-1
:
9px
!
default
;
$font-size-1-sm
:
10px
!
default
;
$font-size-2
:
11px
!
default
;
//h4 - uppercased!, h6 not uppercased, text-small
$font-size-3
:
12px
!
default
;
//h5
$font-size-4
:
14px
!
default
;
$font-size-5
:
16px
!
default
;
//h3
$font-size-6
:
18px
!
default
;
//h2
$font-size-7
:
24px
!
default
;
$font-size-8
:
32px
!
default
;
//h1
$font-size-9
:
36px
!
default
;
$font-size-10
:
42px
!
default
;
$font-size-10-sm
:
48px
!
default
;
//
// Colors
//
...
...
_sass/support/mixins/_buttons.scss
0 → 100644
View file @
200effa4
// Colored button
@mixin
btn-color
(
$fg
,
$bg
)
{
color
:
$fg
;
background-color
:
darken
(
$bg
,
2%
);
background-image
:
linear-gradient
(
lighten
(
$bg
,
5%
)
,
darken
(
$bg
,
2%
));
box-shadow
:
0
1px
3px
rgba
(
0
,
0
,
0
,
0
.25
)
,
0
4px
10px
rgba
(
0
,
0
,
0
,
0
.12
);
&
:hover
,
&
.zeroclipboard-is-hover
{
color
:
$fg
;
background-color
:
darken
(
$bg
,
4%
);
background-image
:
linear-gradient
((
lighten
(
$bg
,
2%
)
,
darken
(
$bg
,
4%
)));
}
&
:active
,
&
.selected
,
&
.zeroclipboard-is-active
{
background-color
:
darken
(
$bg
,
5%
);
background-image
:
none
;
box-shadow
:
inset
0
2px
4px
rgba
(
0
,
0
,
0
,
0
.15
);
}
&
.selected
:hover
{
background-color
:
darken
(
$bg
,
10%
);
}
}
_sass/support/mixins/_layout.scss
0 → 100644
View file @
200effa4
// Media query
// Media query mixin
// Usage:
// @include mq(md) {
// ..medium and up styles
// }
@mixin
mq
(
$name
)
{
// Retrieves the value from the key
$value
:
map-get
(
$media-queries
,
$name
);
// If the key exists in the map
@if
$value
!=
null
{
// Prints a media query based on the value
@media
(
min-width
:
rem
(
$value
))
{
@content
;
}
}
@else
{
@warn
"No value could be retrieved from `
#{
$media-query
}
`. "
+
"Please make sure it is defined in `$media-queries` map."
;
}
}
// Responsive container
@mixin
container
{
padding-right
:
$gutter-spacing-sm
;
padding-left
:
$gutter-spacing-sm
;
@include
mq
(
md
)
{
padding-right
:
$gutter-spacing
;
padding-left
:
$gutter-spacing
;
}
}
_sass/support/mixins/_typography.scss
0 → 100644
View file @
200effa4
@mixin
fs-1
{
font-size
:
$font-size-1
!
important
;
@include
mq
(
sm
)
{
font-size
:
$font-size-1-sm
!
important
;
}
}
@mixin
fs-2
{
font-size
:
$font-size-2
!
important
;
@include
mq
(
sm
)
{
font-size
:
$font-size-3
!
important
;
}
}
@mixin
fs-3
{
font-size
:
$font-size-3
!
important
;
@include
mq
(
sm
)
{
font-size
:
$font-size-4
!
important
;
}
}
@mixin
fs-4
{
font-size
:
$font-size-4
!
important
;
@include
mq
(
sm
)
{
font-size
:
$font-size-5
!
important
;
}
}
@mixin
fs-5
{
font-size
:
$font-size-5
!
important
;
@include
mq
(
sm
)
{
font-size
:
$font-size-6
!
important
;
}
}
@mixin
fs-6
{
font-size
:
$font-size-6
!
important
;
@include
mq
(
sm
)
{
font-size
:
$font-size-7
!
important
;
line-height
:
$body-heading-line-height
;
}
}
@mixin
fs-7
{
font-size
:
$font-size-7
!
important
;
line-height
:
$body-heading-line-height
;
@include
mq
(
sm
)
{
font-size
:
$font-size-8
!
important
;
}
}
@mixin
fs-8
{
font-size
:
$font-size-8
!
important
;
line-height
:
$body-heading-line-height
;
@include
mq
(
sm
)
{
font-size
:
$font-size-9
!
important
;
}
}
@mixin
fs-9
{
font-size
:
$font-size-9
!
important
;
line-height
:
$body-heading-line-height
;
@include
mq
(
sm
)
{
font-size
:
$font-size-10
!
important
;
}
}
@mixin
fs-10
{
font-size
:
$font-size-10
!
important
;
line-height
:
$body-heading-line-height
;
@include
mq
(
sm
)
{
font-size
:
$font-size-10-sm
!
important
;
}
}
_sass/support/mixins/mixins.scss
0 → 100644
View file @
200effa4
@import
"./layout"
;
@import
"./buttons"
;
@import
"./typography"
;
_sass/support/support.scss
0 → 100644
View file @
200effa4
@import
"./variables"
;
@import
"./functions"
;
@import
"./mixins/mixins"
;
assets/css/just-the-docs-dark.scss
0 → 100644
View file @
200effa4
---
---
{
%
include
css
/
just-the-docs
.scss.liquid
color_scheme
=
"dark"
%
}
assets/css/just-the-docs-default.scss
0 → 100644
View file @
200effa4
---
---
{
%
if
site
.color_scheme
and
site
.color_scheme
!=
"nil"
%
}
{
%
assign
color_scheme
=
site
.color_scheme
%
}
{
%
else
%
}
{
%
assign
color_scheme
=
"light"
%
}
{
%
endif
%
}
{
%
include
css
/
just-the-docs
.scss.liquid
color_scheme
=
color_scheme
%
}
assets/css/just-the-docs-light.scss
0 → 100644
View file @
200effa4
---
---
{
%
include
css
/
just-the-docs
.scss.liquid
color_scheme
=
"light"
%
}
assets/images/just-the-docs.png
0 → 100644
View file @
200effa4
20.5 KB
assets/images/search.svg
0 → 100644
View file @
200effa4
<svg
width=
"28"
height=
"28"
viewBox=
"0 0 28 28"
xmlns=
"http://www.w3.org/2000/svg"
><title>
Search
</title><g
fill-rule=
"nonzero"
fill=
"#959396"
><path
d=
"M17.332 20.735c-5.537 0-10-4.6-10-10.247 0-5.646 4.463-10.247 10-10.247 5.536 0 10 4.601 10 10.247s-4.464 10.247-10 10.247zm0-4c3.3 0 6-2.783 6-6.247 0-3.463-2.7-6.247-6-6.247s-6 2.784-6 6.247c0 3.464 2.7 6.247 6 6.247z"
/><path
d=
"M11.672 13.791L.192 25.271 3.02 28.1 14.5 16.62z"
/></g></svg>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment