Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

테스트 커밋 #4875

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7f8a05e
Update _config.yml
quantdatascience Jun 5, 2024
e1bdbff
Create 2024-06-05-first.md
quantdatascience Jun 5, 2024
9ac4c03
Update _config.yml
quantdatascience Jun 5, 2024
f41b6e0
Update _config.yml
quantdatascience Jun 5, 2024
f1fce0e
Update _config.yml
quantdatascience Jun 5, 2024
9b77d91
Update _config.yml
quantdatascience Jun 5, 2024
6320c53
Create _custom.scss
quantdatascience Jun 5, 2024
d4c7655
Update _config.yml
quantdatascience Jun 5, 2024
906cd35
Update _custom.scss
quantdatascience Jun 5, 2024
79b86c6
Update _custom.scss
quantdatascience Jun 5, 2024
059832f
Update _config.yml
quantdatascience Jun 5, 2024
fbdd8ab
이미지를 추가함
quantdatascience Jun 7, 2024
efa27fa
Update 2024-06-05-first.md
quantdatascience Jun 7, 2024
8c66358
Update Gemfile
quantdatascience Jun 7, 2024
262f842
Update Gemfile
quantdatascience Jun 7, 2024
85e1675
Update Gemfile
quantdatascience Jun 7, 2024
fb02564
Update Gemfile
quantdatascience Jun 7, 2024
f0506b1
Update Gemfile
quantdatascience Jun 7, 2024
ca93ee2
Update Gemfile
quantdatascience Jun 7, 2024
0f7f484
Update Gemfile
quantdatascience Jun 7, 2024
c626c44
설정
quantdatascience Jun 9, 2024
22f7aa4
구글 애널리틱스 추가
quantdatascience Jun 9, 2024
6958fed
Update Gemfile
quantdatascience Jun 9, 2024
9c887e9
오류 재수정
quantdatascience Jun 9, 2024
1a7f6da
logo 오류 설정
quantdatascience Jun 9, 2024
470679b
quantdatascience Jun 9, 2024
178c3fd
로고 오류
quantdatascience Jun 9, 2024
55ffcb3
링크
quantdatascience Jun 10, 2024
28752bd
대규모 업데이트
quantdatascience Jun 11, 2024
c132610
quantdatascience Jun 11, 2024
bef5814
네이버
quantdatascience Jun 11, 2024
bc48915
목차
quantdatascience Jun 11, 2024
080b639
여러가지 설정
quantdatascience Jun 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
오류 재수정
  • Loading branch information
quantdatascience committed Jun 9, 2024
commit 9c887e95e208b3fe8c0bc6e0c5ae9a3b62358077
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ form {
}

p {
margin-bottom: math.div(5px, 2);
margin-bottom: 5px / 2;
}

ul {
Expand Down
4 changes: 2 additions & 2 deletions _sass/minimal-mistakes/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
========================================================================== */

@function em($target, $context: $doc-font-size) {
@return math.div($target, $context) * 1em;
@return $target / $context * 1em;
}


Expand Down Expand Up @@ -66,7 +66,7 @@
$green: green($color);
$blue: blue($color);

$yiq: math.div((($red*299)+($green*587)+($blue*114)), 1000);
$yiq: (($red*299)+($green*587)+($blue*114)) / 1000;

@if $yiq-debug { @debug $yiq, $threshold; }

Expand Down
8 changes: 4 additions & 4 deletions _sass/minimal-mistakes/vendor/breakpoint/_helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$base-unit: unit(breakpoint-get('base font size'));

@if $base-unit == 'px' or $base-unit == '%' or $base-unit == 'em' or $base-unit == 'pt' {
@return math.div(base-conversion($value), base-conversion(breakpoint-get('base font size'))) * 1em;
@return base-conversion($value) / base-conversion(breakpoint-get('base font size')) * 1em;
}
@else {
@warn '#{breakpoint-get(\'base font size\')} is not set in valid units for font size!';
Expand All @@ -27,16 +27,16 @@
$unit: unit($value);

@if $unit == 'px' {
@return math.div($value, 16px) * 1em;
@return $value / 16px * 1em;
}
@else if $unit == '%' {
@return math.div($value, 100%) * 1em;
@return $value / 100% * 1em;
}
@else if $unit == 'em' {
@return $value;
}
@else if $unit == 'pt' {
@return math.div($value, 12pt) * 1em;
@return $value / 12pt * 1em;
}
@else {
@return $value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $mfp-include-iframe-type: true; // Enable Ifra
$mfp-iframe-padding-top: 40px; // Iframe padding top
$mfp-iframe-background: #000; // Background color of iframes
$mfp-iframe-max-width: 900px; // Maximum width of iframes
$mfp-iframe-ratio: math.div(9, 16); // Ratio of iframe (9/16 = widescreen, 3/4 = standard, etc.)
$mfp-iframe-ratio: 9 / 16; // Ratio of iframe (9/16 = widescreen, 3/4 = standard, etc.)

// Image-type options
$mfp-include-image-type: true; // Enable Image-type popups
Expand Down
4 changes: 2 additions & 2 deletions _sass/minimal-mistakes/vendor/susy/susy/_su-math.scss
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
@if unitless($span-width) {
$container-spread: su-valid-spread($container-spread);
$container: _su-sum($columns, $gutters, $container-spread, $validate: false);
@return percentage(math.div($span-width, $container));
@return percentage($span-width / $container);
}

@return $span-width;
Expand Down Expand Up @@ -141,7 +141,7 @@
}

$container: _su-sum($columns, $gutters, $container-spread);
@return percentage(math.div($gutters , $container));
@return percentage($gutters / $container);
}


Expand Down