-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.css
122 lines (109 loc) · 2.67 KB
/
layout.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/
/* Table of Content
==================================================
#Site Styles
#Page Styles
#Media Queries
#Font-Face */
/* #Site Styles
================================================== */
body {
-webkit-font-smoothing: subpixel-antialiased!important;
}
a {
transition: all 0.2s ease-out;
}
img {
max-width: 100%;
}
.tumblr-nav {
background: #000000;
color: #FFFFFF;
}
#logo {
float: left;
display: inline-block;
width: 263px;
height: 30px;
background: url(http://www.autographer.com/Content/images/logo.png) no-repeat 0 0;
margin: 20px 0;
}
#logo span {
display:none;
}
#nav {
float: right;
margin: 24px 0 0;
}
#nav li {
display: inline-block;
font-weight: bold;
font-size: 12px;
margin-left: 20px;
}
#nav li a:link, #nav li a:visited {
color: #FFFFFF;
text-decoration: none;
padding: 2px;
}
#nav li a:hover {
color: #c0c0c0;
}
#nav li a.selected {
color: #ffd24f;
}
/* #Page Styles
================================================== */
/* home */
.hero {
background-size: cover;
background-repeat: no-repeat;
padding: 40px 0;
}
.grid {
width: 120px;
overflow: hidden;
height: auto;
}
.grid:first-child, .grid:nth-child(3n) {
outline: 1px solid red;
/*width: 300px; */
}
.grid:first-child {
outline-color: blue;
}
/* #Media Queries
================================================== */
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {}
/* #Font-Face
================================================== */
/* This is the proper syntax for an @font-face file
Just create a "fonts" folder at the root,
copy your FontName into code below and remove
comment brackets */
/* @font-face {
font-family: 'FontName';
src: url('../fonts/FontName.eot');
src: url('../fonts/FontName.eot?iefix') format('eot'),
url('../fonts/FontName.woff') format('woff'),
url('../fonts/FontName.ttf') format('truetype'),
url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
font-weight: normal;
font-style: normal; }
*/