add site title
This commit is contained in:
parent
87061bdda7
commit
320680a6c6
2 changed files with 17 additions and 0 deletions
|
@ -2,6 +2,9 @@
|
|||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>Web Development and Productivity Hacks | {{site.title}}</title>
|
||||
|
||||
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
||||
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
||||
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato" />
|
||||
|
|
|
@ -4,6 +4,13 @@
|
|||
|
||||
@import "minima";
|
||||
|
||||
* {
|
||||
text-shadow: 1px 1px 1px rgba(0,0,0,.004)!important;
|
||||
-webkit-font-smoothing: antialiased!important;
|
||||
-moz-osx-font-smoothing: grayscale!important;
|
||||
text-rendering: optimizelegibility!important;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
-webkit-box-shadow: inset 0 3px 50px rgba(0,0,0,0.3);
|
||||
|
@ -123,6 +130,7 @@ article .post-content p {
|
|||
#mc_embed_signup input {
|
||||
padding: 15px !important;
|
||||
font-size: 16px !important;
|
||||
font-weight: bold;
|
||||
height: 60px !important;
|
||||
border-radius: 3.2px !important;
|
||||
}
|
||||
|
@ -132,12 +140,18 @@ article .post-content p {
|
|||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.jumbotron {
|
||||
padding: 30px 0;
|
||||
}
|
||||
|
||||
.jumbotron #mc_embed_signup label{
|
||||
font-size: 24px;
|
||||
}
|
||||
#mc_embed_signup input {
|
||||
margin: 0 20px !important;
|
||||
width: calc(100% - 40px) !important;
|
||||
height: 50px !important;
|
||||
padding: 10px !important;
|
||||
}
|
||||
.site-nav {
|
||||
background-color: rgba(141,191,66,.97)!important;
|
||||
|
|
Loading…
Reference in a new issue