¯(°_o)/¯

This commit is contained in:
Amolith 2019-03-26 09:23:22 -04:00
commit 383028f312
Signed by: Amolith
GPG Key ID: 51FD40936DB0065B
2 changed files with 1 additions and 17 deletions

View File

@ -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;

View File

@ -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)