-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
134 lines (113 loc) · 2.41 KB
/
style.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
123
124
125
126
127
128
129
130
131
132
133
134
/*
Theme Name: CargoPress Wordpress Theme
Theme URI: http://github.com/nebirhos/cargopress
Description: A minimalist wordpress theme inspired by the Cargo Collective project
Version: 1.0
Author: nebirhos
Tags: clean, minimal, portfolio, white, grid, one-column, flexible-width, theme-options
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* RESET */
@import url('styles/reset.css');
/* CargoPress */
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000;
background-color: #FFF;
}
a {
color: #888;
text-decoration: underline;
}
a:hover {color: #000;}
/* Layout */
div#header {
position: fixed;
top: 0; left: 35px;
width: 200px; height: 70px;
}
div#sidebar {
position: fixed;
top: 70px; left: 35px;
width: 200px;
z-index: 10;
}
div#main {
position: relative;
margin: 70px 35px 35px 270px;
}
div#footer {
position: fixed;
right: 35px; bottom: 15px;
}
/* Content */
div#portfolio-title {
width: 200px;
height: 60px;
padding: 5px 0;
font-family: 'Arvo', arial, serif;
font-weight: bold;
font-size: 30px;
overflow: hidden;
}
div#portfolio-title a {text-decoration: none;}
/* Index Grid */
.project-grid a {text-decoration: none;}
.project-cell {
position: relative;
display: block;
float: left;
width: 200px;
height: 167px;
overflow: hidden;
margin-right: 35px;
margin-bottom: 10px;
}
/* Floats clearfix */
.project-grid:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.project-cell div {
position: absolute;
width: 200px;
height: 32px;
bottom: 0;
text-align: center;
line-height: 32px;
vertical-align: middle;
font-weight: bold;
}
.project-cell span {padding: 2px 3px;}
.project-cell:hover span {background-color: #FF6;}
.project-cell .no-image {
position: absolute;
width: 200px;
height: 134px;
top: 0;
background-color: #888;
}
/* Sidebar Menu */
.menu a {
text-decoration: none;
padding: 2px 3px;
line-height: 16px;
color: #888;
}
.menu a:hover {background-color: #888; color: #FFF;}
.menu.projects a {color: #000;}
.menu.projects a:hover {background-color: #000; color: #FFF;}
/* Post */
h1.title {
font-family: 'Arvo', arial, serif;
font-size: 20px;
margin: 10px 0;
}
div#content p {
margin: 10px 0;
}