Skip to content

Commit cba44e9

Browse files
committed
Merge branch 'master' into prod
2 parents d352a6d + ffbb8f1 commit cba44e9

19 files changed

+854
-253
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.DS_Store
2+
.*.swp

.htaccess

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<IfModule mod_rewrite.c>
2+
RewriteEngine On
3+
RewriteBase /
4+
RewriteRule ^(resources|templates).*$ http://phpcon.org/ [R=302,L]
5+
RewriteCond %{REQUEST_FILENAME} !-d
6+
RewriteCond %{REQUEST_FILENAME} !-f
7+
RewriteCond %{REQUEST_FILENAME} !favicon.ico$
8+
RewriteRule ^(.*)$ index.php [QSA,L]
9+
</IfModule>
10+

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is the code for the awesome PHP Community Conference website.

css/.style.css.swp

-16 KB
Binary file not shown.

css/grid.css

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
/**
2+
* Grid
3+
*/
4+
#grid{
5+
6+
/* Dimensions - same width as your grid with gutters */
7+
width: 980px;
8+
9+
/* Grid (left-aligned)
10+
position: absolute;
11+
top: 0;
12+
left: 0;
13+
*/
14+
15+
/* Grid (centered) */
16+
position: absolute;
17+
top: 0;
18+
left: 50%;
19+
margin-left: -490px;
20+
21+
}
22+
23+
/**
24+
* Vertical grid lines
25+
*
26+
* Set the column width taking the borders into consideration,
27+
* and use margins to set column gutters.
28+
*/
29+
#grid div.vert{
30+
31+
width: 139px;
32+
border: solid darkturquoise;
33+
border-width: 0 1px;
34+
margin-right: 19px;
35+
36+
}
37+
38+
#grid div.vert.first-line{
39+
40+
margin-left: 19px;
41+
42+
}
43+
44+
45+
/**
46+
* Horizontal grid lines, defined by your base line height
47+
*
48+
* Remember, the CSS properties that define the box model:
49+
* visible height = height + borders + margins + padding
50+
*/
51+
#grid div.horiz{
52+
53+
/* 20px line height */
54+
height: 19px;
55+
border-bottom: 1px dotted darkgray;
56+
margin: 0;
57+
padding: 0;
58+
59+
}
60+
61+
/**
62+
* Classes for multiple grids
63+
*
64+
* When using more than one grid, remember to set the numberOfGrids
65+
* option in the hashgrid.js file.
66+
*/
67+
#grid.grid-1 div.vert{
68+
69+
/* Vertical grid line colour for grid 1 */
70+
border-color: darkturquoise;
71+
72+
}
73+
#grid.grid-2{
74+
75+
/* Adjustments */
76+
padding: 0 160px;
77+
width: 660px;
78+
79+
}
80+
#grid.grid-2 div.vert{
81+
82+
/* Vertical grid line colour for grid 2 */
83+
border-color: crimson;
84+
85+
}
86+

0 commit comments

Comments
 (0)