Change summary
_sass/_default.scss | 16 ----------------
cards.py | 2 +-
2 files changed, 1 insertion(+), 17 deletions(-)
Detailed changes
@@ -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: '<i class="fa fa-link"></i>'
}
-
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;
@@ -19,6 +19,6 @@ for i in x["cards"]:
with open('_site/index.html') as f:
y = f.read()
-y = y.replace('<!-- JS cards here -->', text)
+y = y.replace('<!-- Static cards -->', text)
with open('_site/index.html', 'w') as f:
f.write(y)