minor cleanups
This commit is contained in:
parent
8fbc870dd5
commit
21db411871
4 changed files with 12 additions and 4 deletions
|
@ -68,7 +68,7 @@ b, strong, label, th {
|
|||
src: url("./fonts/Novecentosanswide-Medium-webfont.eot?#iefix") format("embedded-opentype"), url("./fonts/Novecentosanswide-Medium-webfont.woff2") format("woff2"), url("./fonts/Novecentosanswide-Medium-webfont.woff") format("woff"), url("./fonts/Novecentosanswide-Medium-webfont.ttf") format("truetype"), url("./fonts/Novecentosanswide-Medium-webfont.svg#novecento_sans_widemedium") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal; }
|
||||
.default-animation, #body, .modular .showcase .button, .modular .slideme_container .arrow, .modular .slideme_container .pagination .numbers li, .callout .notebook .screen .screen-content-hover, .logo h3, .logo ul.social-icons li {
|
||||
.default-animation, #body, .modular .showcase .button, .modular .slideme_container .arrow, .modular .slideme_container .pagination .numbers li, .modular .bottom .button, .callout .notebook .screen .screen-content-hover, .logo h3, .logo ul.social-icons li {
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease; }
|
||||
|
@ -895,7 +895,10 @@ ul.pagination {
|
|||
font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
font-size: 1rem; }
|
||||
font-size: 1rem;
|
||||
border: 0 none; }
|
||||
.modular .bottom .button:hover {
|
||||
background-color: #558042; }
|
||||
|
||||
.modular .footer {
|
||||
font-size: 0.9rem;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -21,12 +21,17 @@
|
|||
}
|
||||
|
||||
.button {
|
||||
@extend .default-animation;
|
||||
background-color: $core-accent;
|
||||
color: $header-text;
|
||||
font-family: $font-family-header;
|
||||
border-radius: $border-radius;
|
||||
box-shadow: none;
|
||||
font-size: $core-font-size;
|
||||
border: 0 none;
|
||||
&:hover {
|
||||
background-color: darken($core-accent, 20%);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
<p>{{ page.header.newsletter_description }}</p>
|
||||
|
||||
<form action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=karolorzel', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" class="newsletter">
|
||||
<input type="text" name="email" onclick="if(this.value=='Email')this.value='';" onblur="if(this.value=='')this.value='Email';"/>
|
||||
<input type="text" name="email" value="Email" onclick="if(this.value=='Email')this.value='';" onblur="if(this.value=='')this.value='Email';"/>
|
||||
<input type="hidden" value="karolorzel" name="uri"/>
|
||||
<input type="hidden" name="loc" value="en_US"/>
|
||||
<input type="submit" value="OK" />
|
||||
|
|
Loading…
Reference in a new issue