diff --git a/_sass/_default.scss b/_sass/_default.scss index ee6fdebd223141ddff7796aca90df84702edfcf9..8de288158d6fd657701d9e90dd1d3a63f34a976a 100644 --- a/_sass/_default.scss +++ b/_sass/_default.scss @@ -61,10 +61,6 @@ } /* =Base */ - - - - input[type=text] { width: 30%; box-sizing: border-box; @@ -77,50 +73,38 @@ input[type=text] { -webkit-transition: width 0.4s ease-in-out; transition: width 0.4s ease-in-out; } - input[type=text]:focus { width: 75%; } - - - - body { font-family: 'Open Sans'; color: $iron; background-color: $dorian; } - a { color: $iron; font-weight: bold; text-decoration: none; } - .content a { text-decoration: bold; content: '' } - p { font-size: 20px; line-height: 32px; } - p.center { text-align: center; } - ul { font-size: 17px; line-height: 27px; } - ol { font-size: 17px; line-height: 27px; } - img { margin: 40px auto; display: block; diff --git a/cards.py b/cards.py index 292e8111a3c32001655af26e2006889bdbfffb5d..4aba82e0e358a208276e671e696bc88084744239 100644 --- a/cards.py +++ b/cards.py @@ -19,6 +19,6 @@ for i in x["cards"]: with open('_site/index.html') as f: y = f.read() -y = y.replace('', text) +y = y.replace('', text) with open('_site/index.html', 'w') as f: f.write(y)