-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
282 lines (230 loc) · 5.11 KB
/
styles.css
File metadata and controls
282 lines (230 loc) · 5.11 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Content
==================================================
#Site Styles
#Page Styles
#Media Queries
#Font-Face */
/* #Site Styles
================================================== */
html, body {
height: 100%;
font-family: 'Roboto Condensed', sans-serif;
}
body {
background-image: url(/img/bodypattern.png);
background-position: initial initial;
background-repeat: initial initial;
}
.container {
/*background-image: url(/img/contentpattern.png);*/
background-position: initial initial;
background-repeat: initial initial;
min-height: 100%;
height: auto !important;
height: 100%;
display: table;
}
.main {
text-align: center;
/*display: table-cell; vertical-align: middle;*/
margin-top: 10%;
}
.wrapper {
margin-top: 10px;
text-align: center;
}
.uppercase {
text-transform: uppercase;
}
.navigation {
display: block;
text-align: center;
/*border-top: 1px solid #d3d3d3;*/
border-bottom: 1px solid #d3d3d3;
margin: 10px auto 0;
min-height: 35px;
padding: 12px 0 0;
font-family: 'Roboto Condensed', sans-serif;
text-transform: uppercase;
letter-spacing:6px;
font-size: 2em;
}
nav ul li, .navigation ul li{
display: inline;
margin: 5px 15px;
}
.navigation a {
text-decoration: none;
}
.navigation a:hover {
color: #2ecc71;
}
.navigation a:active, .navigation a.active {
color: #27ad60;
}
.logo img {
height: 60px;
float:left;
margin-top:10px;
}
strong {
color: #c02702;
}
.jobs {
display: table; /* Allow the centering to work */
margin: 0 auto;
margin-top: 10px;
}
.jobs a, .links a {
text-decoration: none;
}
.jobs li {
float: left;
padding: 25px;
}
.jobs div.job-title {
padding-top: 10px;
font-size: 1.3em;
}
.image-wrap {
-webkit-border-radius: 50em;
-moz-border-radius: 50em;
border-radius: 50em;
}
h1.name {
font-family: 'Roboto Condensed', sans-serif;
text-transform: uppercase;
letter-spacing:10px;
font-size: 6em;
}
footer {
border-top: 3px double #ccc;
margin-top: 4.5em;
color: #666;
font-size: 1em;
}
footer a, footer li a:visited {
color: #666;
}
footer li a:hover, footer li a:focus { color: #000; }
footer ul {
padding-top: 0.75em;
}
footer ul.links {>
margin-right: 0;
text-align: right;
}
.links li {
display: inline;
padding: 6px;
}
/* #Page Styles
================================================== */
/* SERVICES PAGE */
.services {
padding: 10px;
}
/* PORTFOLIO PAGE */
.portfolio-item {
margin: 10px;
}
img.portfolio{
width: 100%;
}
img.portfolio-logo{
width: 300px;
}
/* TEAM PAGE */
header.team {
margin: 25px;
}
span.tagline {
font-size: 2em;
}
.profile {
margin-bottom: 20px;
}
.profile a {
text-decoration: none;
}
.profile-img {
width: 200px;
height: 200px;
border-radius: 150px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
box-shadow: 0 0 8px rgba(0, 0, 0, .8);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}
/* #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) {
h1.name {
font-size: 4em;
}
}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
h1.name {
font-size: 4em;
}
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
nav ul li, .navigation ul li {
display:block;
margin: 5px 8px;
}
h1.name {
font-size: 3em;
}
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
nav ul li, .navigation ul li{
margin: 15px 6px;
display: block;
}
footer {
text-align: center
}
.jobs li {
float: none;
padding-bottom: 10px;
padding-top: 0px;
}
li {
margin-bottom: 0px;
}
h1.name {
font-size: 3em;
}
}
/* #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; }
*/