¯(°_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 */ /* =Base */
input[type=text] { input[type=text] {
width: 30%; width: 30%;
box-sizing: border-box; box-sizing: border-box;
@ -77,50 +73,38 @@ input[type=text] {
-webkit-transition: width 0.4s ease-in-out; -webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out; transition: width 0.4s ease-in-out;
} }
input[type=text]:focus { input[type=text]:focus {
width: 75%; width: 75%;
} }
body { body {
font-family: 'Open Sans'; font-family: 'Open Sans';
color: $iron; color: $iron;
background-color: $dorian; background-color: $dorian;
} }
a { a {
color: $iron; color: $iron;
font-weight: bold; font-weight: bold;
text-decoration: none; text-decoration: none;
} }
.content a { .content a {
text-decoration: bold; text-decoration: bold;
content: '<i class="fa fa-link"></i>' content: '<i class="fa fa-link"></i>'
} }
p { p {
font-size: 20px; font-size: 20px;
line-height: 32px; line-height: 32px;
} }
p.center { p.center {
text-align: center; text-align: center;
} }
ul { ul {
font-size: 17px; font-size: 17px;
line-height: 27px; line-height: 27px;
} }
ol { ol {
font-size: 17px; font-size: 17px;
line-height: 27px; line-height: 27px;
} }
img { img {
margin: 40px auto; margin: 40px auto;
display: block; display: block;

View File

@ -19,6 +19,6 @@ for i in x["cards"]:
with open('_site/index.html') as f: with open('_site/index.html') as f:
y = f.read() y = f.read()
y = y.replace('<!-- JS cards here -->', text) y = y.replace('<!-- Static cards -->', text)
with open('_site/index.html', 'w') as f: with open('_site/index.html', 'w') as f:
f.write(y) f.write(y)