thallada.github.io/css/main.css

353 lines
5.3 KiB
CSS
Raw Normal View History

2014-06-29 19:51:58 +00:00
/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/
/* Box sizing. Courtesy of Paul Irish
* (http://www.paulirish.com/2012/box-sizing-border-box-ftw/) */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
2014-07-13 23:18:26 +00:00
html {
width: 100%;
height: 100%;
}
body {
font-family: 'Open Sans', Arial, sans-serif;
font-style: normal;
font-weight: 400;
color: #444;
}
strong {
font-weight: 400;
color: FireBrick;
}
h2 {
font-weight: 300;
}
hr {
width: 75%;
}
a {
color:FireBrick;
text-decoration: none;
}
2014-06-29 19:51:58 +00:00
2014-07-24 03:19:54 +00:00
p {
margin: 0 0 10px;
}
2014-07-13 23:18:26 +00:00
a:visited {
color:#855C85;
}
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
a:hover {
color:FireBrick;
text-decoration: underline;
}
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
canvas {
position: fixed;
top: 0;
left: 0;
}
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
blockquote {
margin-left: 20px;
margin-right: 20px;
padding-left: 1rem;
border-left: solid 3px #aaa;
}
2014-06-29 19:51:58 +00:00
2014-07-13 23:18:26 +00:00
blockquote p {
margin-bottom: 6px;
}
2014-06-29 19:51:58 +00:00
/*****************************************************************************/
/*
/* Grid
/*
/*****************************************************************************/
/* Grid. Courtesy of Adam Kaplan (http://www.adamkaplan.me/grid/) */
.container {
margin: 0 auto;
max-width: 48rem;
width: 90%;
}
@media (min-width: 40rem) {
.column {
float: left;
padding-left: 1rem;
padding-right: 1rem;
}
.column.full { width: 100%; }
.column.two-thirds { width: 66.7%; }
.column.half { width: 50%; }
.column.third { width: 33.3%; }
.column.fourth { width: 25%; }
.column.three-fourths { width: 75%; }
.column.flow-opposite { float: right; }
}
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}
@media (min-width: 40rem) {
.column.flow-opposite { float: right; }
}
/* More suggestions from Jorden Lev (http://jordanlev.github.io/grid/) */
@-webkit-viewport {width: device-width;}
@-moz-viewport {width: device-width;}
@-ms-viewport {width: device-width;}
@-o-viewport {width: device-width;}
@viewport {width: device-width;}
img { width: auto; max-width: 100%; height: auto; }
/* By me */
.hide-mobile {
display: none;
}
@media (min-width: 40rem) {
.hide-desktop { display: none }
.hide-mobile { }
}
/*****************************************************************************/
/*
2014-07-13 23:18:26 +00:00
/* Blog
2014-06-29 19:51:58 +00:00
/*
/*****************************************************************************/
2014-07-13 23:18:26 +00:00
h1.title {
2014-06-29 19:51:58 +00:00
display: inline-block;
2014-07-13 23:18:26 +00:00
padding-right: 10px;
font-size: 2rem;
font-weight: 200;
2014-07-24 03:19:54 +00:00
margin: 0;
}
div.header {
margin: 20px 0 20px;
text-align: center;
}
@media (min-width: 40rem) {
div.header {
text-align: start;
}
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
div.header a {
color: FireBrick;
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
span.timestamp {
font-size: 0.85rem;
2014-07-24 03:19:54 +00:00
margin-top: 7px;
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
@media (min-width: 40rem) {
span.timestamp {
float: right;
}
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
.post-header {
padding-bottom: 10px;
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
a.read-more {
float: right;
font-size: 0.85rem;
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
h2.post-title {
margin-top: 0;
2014-07-24 03:19:54 +00:00
margin-bottom: 0;
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
@media (min-width: 40rem) {
p.contact-links {
float: right;
}
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
.contact {
text-align: center;
padding-bottom: 10px;
2014-06-29 19:51:58 +00:00
}
2014-07-13 23:18:26 +00:00
div.more-row {
padding-top: 5px;
2014-06-29 19:51:58 +00:00
}
2014-07-24 15:45:52 +00:00
div.pagination {
text-align: center;
margin-bottom: 10px;
}
2014-06-29 19:51:58 +00:00
/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/
/* standard */
.post pre {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .4em;
}
.post ul, .post ol {
margin-left: 1.35em;
}
.post code {
border: 1px solid #ddd;
background-color: #eef;
padding: 0 .2em;
2014-07-24 17:00:30 +00:00
font-size: small;
2014-06-29 19:51:58 +00:00
}
.post pre code {
border: none;
2014-07-24 17:00:30 +00:00
padding: 0;
2014-06-29 19:51:58 +00:00
}
/* terminal */
.post pre.terminal {
border: 1px solid #000;
background-color: #333;
color: #FFF;
}
.post pre.terminal code {
background-color: #333;
}
/*****************************************************************************/
/*
/* Homepage
/*
/*****************************************************************************/
#home {
display: block;
position: relative;
padding-top: 1.5rem;
}
/* credit to http://codepen.io/bennettfeely/pen/Ftczh for a lot of this css */
.card {
position: relative;
z-index: 2;
padding: 1rem;
box-shadow: 0 1px 2px #aaa;
background: white;
2014-07-24 03:19:54 +00:00
margin: 0 0.5rem 1rem;
2014-06-29 19:51:58 +00:00
border-radius: 3px;
user-select: none;
}
2014-07-13 23:18:26 +00:00
h1.big-name {
2014-06-29 19:51:58 +00:00
font-size: 2rem;
font-weight: 200;
margin-top: 0;
text-align: center;
}
2014-07-24 03:19:54 +00:00
#front-quote , #front-quote, .profile-card-desc p {
2014-06-29 19:51:58 +00:00
margin-top: 0;
margin-bottom: 0;
}
.profile-card-portrait {
width: 100%;
margin-bottom: 1.5rem;
}
.profile-card-quote {
margin-top: 1.5rem;
}
.profile-card-portrait img {
margin: 0 auto;
display: block;
}
.profile-card-desc {
margin-top: 1.25rem;
}
@media (min-width: 40rem) {
.profile-card-portrait {
margin-bottom: 0;
}
.profile-card-links {
margin-top: 0;
}
}
2014-07-13 00:06:42 +00:00
.link-card {
text-align: center;
text-decoration: none;
}
.link-card img {
max-width: 64px;
max-height: 64px;
}
.mobile-half {
padding: 0;
float: left;
width: 50%;
}
@media (min-width: 40rem) {
.mobile-half {
padding: 0;
}
}
a.no-decoration {
color: #444;
}
2014-07-13 23:18:26 +00:00
2014-07-13 00:06:42 +00:00
a.no-decoration:visited {
color: #444;
}
2014-07-13 23:18:26 +00:00
2014-07-13 00:06:42 +00:00
a.no-decoration:hover {
color: #444;
text-decoration: none;
}