Skip to content

Commit

Permalink
edit : edit css
Browse files Browse the repository at this point in the history
  • Loading branch information
AshHyun committed Aug 24, 2020
1 parent acb8bd4 commit f009791
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 130 deletions.
3 changes: 1 addition & 2 deletions _posts/2020-08-24-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ last_modified_at: 2020-08-24 16:42
layout: jupyter
classes: wide
---
## Jupyter Notebook으로 pandas 실행하기

---
안녕하세요. 이 글은 Jupyter Noteook으로 쓴 글입니다
- 안녕
- 여기도 안녕

---


Expand Down
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Minimal Mistakes Jekyll Theme 4.20.1 by Michael Rose
* Minimal Mistakes Jekyll Theme 4.17.2 by Michael Rose
* Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
*/
Expand Down
12 changes: 2 additions & 10 deletions _sass/minimal-mistakes/_archive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
}

.archive__subtitle {
margin: 1.414em 0 0.5em;
margin: 1.414em 0 0;
padding-bottom: 0.5em;
font-size: $type-size-5;
color: $muted-text-color;
Expand Down Expand Up @@ -74,7 +74,7 @@

.archive__item-excerpt {
margin-top: 0;
font-size: $type-size-6;
font-size: 0.85em;

& + p {
text-indent: 0;
Expand Down Expand Up @@ -445,11 +445,3 @@
}
}
}

/* Place inside a single layout */

.layout--single {
.feature__wrapper {
display: inline-block;
}
}
14 changes: 7 additions & 7 deletions _sass/minimal-mistakes/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ body {
padding: 0;
color: $text-color;
font-family: $global-font-family;
line-height: 1.5;
line-height: 2.0;

&.overflow--hidden {
/* when primary navigation is visible, the content in the background won't scroll */
Expand All @@ -35,27 +35,27 @@ h6 {

h1 {
margin-top: 0;
font-size: $h-size-1;
font-size: $type-size-2;
}

h2 {
font-size: $h-size-2;
font-size: $type-size-3;
}

h3 {
font-size: $h-size-3;
font-size: $type-size-4;
}

h4 {
font-size: $h-size-4;
font-size: $type-size-5;
}

h5 {
font-size: $h-size-5;
font-size: $type-size-6;
}

h6 {
font-size: $h-size-6;
font-size: $type-size-6;
}

small,
Expand Down
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ input[type="radio"] {
cursor: pointer;
border-radius: 0;
border: 0 \9;
box-shadow: none;
}

input[type="checkbox"],
Expand All @@ -120,6 +119,7 @@ input[type="radio"] {

input[type="image"] {
border: 0;
box-shadow: none;
}

input[type="file"] {
Expand Down
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes/_masthead.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
-ms-flex-item-align: center;
align-self: center;
font-weight: bold;
// z-index: 20;
z-index: 20;
}

.site-subtitle {
Expand Down
7 changes: 1 addition & 6 deletions _sass/minimal-mistakes/_notices.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
h4 {
margin-top: 0 !important; /* override*/
margin-bottom: 0.75em;
line-height: inherit;
}

@at-root .page__content #{&} h4 {
Expand Down Expand Up @@ -57,10 +56,6 @@
background-color: mix(#fff, $notice-color, 95%)
}

pre code {
background-color: inherit;
}

ul {
&:last-child {
margin-bottom: 0; /* override*/
Expand Down Expand Up @@ -102,4 +97,4 @@

.notice--danger {
@include notice($danger-color);
}
}
14 changes: 4 additions & 10 deletions _sass/minimal-mistakes/_page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ body {
p,
li,
dl {
font-size: 1em;
font-size: 0.775em;
}

/* paragraph indents */
Expand Down Expand Up @@ -299,12 +299,6 @@ body {
text-transform: uppercase;
}

.post__meta-sep::before {
content: "\2022";
padding-left: 0.5em;
padding-right: 0.5em;
}

/*
Page taxonomy
========================================================================== */
Expand Down Expand Up @@ -358,11 +352,11 @@ body {

.taxonomy__title {
margin-bottom: 0.5em;
color: $muted-text-color;
color: lighten($text-color, 60%);
}

.taxonomy__count {
color: $muted-text-color;
color: lighten($text-color, 50%);
}

.taxonomy__index {
Expand Down Expand Up @@ -395,7 +389,7 @@ body {
.back-to-top {
display: block;
clear: both;
color: $muted-text-color;
color: lighten($text-color, 50%);
font-size: 0.6em;
text-transform: uppercase;
text-align: right;
Expand Down
8 changes: 4 additions & 4 deletions _sass/minimal-mistakes/_reset.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ html {
font-size: 16px;

@include breakpoint($medium) {
font-size: 18px;
font-size: 16px;
}

@include breakpoint($large) {
font-size: 20px;
font-size: 18px;
}

@include breakpoint($x-large) {
font-size: 22px;
font-size: 20px;
}

-webkit-text-size-adjust: 100%;
Expand Down Expand Up @@ -184,4 +184,4 @@ input[type="search"]::-webkit-search-cancel-button {
textarea {
overflow: auto; /* remove vertical scrollbar in IE6-9*/
vertical-align: top; /* readability and alignment cross-browser*/
}
}
51 changes: 11 additions & 40 deletions _sass/minimal-mistakes/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

.sidebar {
@include clearfix();
// @include breakpoint(max-width $large) {
// /* fix z-index order of follow links */
// position: relative;
// z-index: 10;
// -webkit-transform: translate3d(0, 0, 0);
// transform: translate3d(0, 0, 0);
// }
@include breakpoint(max-width $large) {
/* fix z-index order of follow links */
position: relative;
z-index: 10;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}

@include breakpoint($large) {
float: left;
Expand All @@ -32,7 +32,7 @@
/* calculate height of nav list
viewport height - nav height - masthead x-padding
*/
max-height: calc(100vh - #{$nav-height} - 2em);
height: calc(100vh - #{$nav-height} - 2em);
}
}

Expand Down Expand Up @@ -63,7 +63,7 @@

img {
width: 100%;

&.emoji {
width: 20px;
height: 20px;
Expand Down Expand Up @@ -184,7 +184,7 @@
display: table-cell;
vertical-align: middle;
font-family: $sans-serif;
z-index: 20;
z-index: 10;
position: relative;
cursor: pointer;

Expand All @@ -194,38 +194,13 @@
}
}

.author__urls {
span.label {
padding-left: 5px;
}
}

@include breakpoint($large) {
display: block;
}

button {
position: relative;
margin-bottom: 0;

&:before {
@supports (pointer-events: none) {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
}

&.open {
&:before {
pointer-events: auto;
}
}

@include breakpoint($large) {
display: none;
}
Expand All @@ -242,6 +217,7 @@
border: 1px solid $border-color;
border-radius: $border-radius;
background: $background-color;
z-index: -1;
box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12);
cursor: default;

Expand Down Expand Up @@ -293,11 +269,6 @@
}
}

ul {
padding: 10px;
list-style-type: none;
}

li {
white-space: nowrap;
}
Expand Down
2 changes: 1 addition & 1 deletion _sass/minimal-mistakes/_syntax.scss
Original file line number Diff line number Diff line change
Expand Up @@ -321,4 +321,4 @@ figure.highlight {
th, td {
border-bottom: 0;
}
}
}
31 changes: 0 additions & 31 deletions _sass/minimal-mistakes/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,6 @@ body:hover .visually-hidden button {
color: $instagram-color;
}

.fa-keybase {
color: $keybase-color;
}

.fa-lastfm,
.fa-lastfm-square {
color: $lastfm-color;
Expand Down Expand Up @@ -385,33 +381,6 @@ body:hover .visually-hidden button {
}
}

.greedy-nav__toggle {
&:before {
@supports (pointer-events: none) {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
background-color: $background-color;
-webkit-transition: $global-transition;
transition: $global-transition;
pointer-events: none;
}
}

&.close {
&:before {
opacity: 0.9;
-webkit-transition: $global-transition;
transition: $global-transition;
pointer-events: auto;
}
}
}

.greedy-nav__toggle:hover {
.navicon,
.navicon:before,
Expand Down
Loading

0 comments on commit f009791

Please sign in to comment.