-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsgp.css
More file actions
105 lines (83 loc) · 1.55 KB
/
sgp.css
File metadata and controls
105 lines (83 loc) · 1.55 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
@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow|Lobster+Two);
@import url(css/yui-reset-stylesheet.min.css);
/*
Document : sgp
Created on : 28.03.2012, 16:34:23
Author : nyffenegge
Description:
*/
body {
vertical-align:top;
line-height:1.5em;
max-width:1280px;
margin-left:auto;
margin-right:auto;
}
h1 {
font-size: 18pt;
font-weight: bold;
margin: 10px 0 20px;
}
header {
background-color:#EE5757;
color: #ffffff;
font-family: 'Lobster Two';
font-size: 30pt;
padding: 0.5em 20px;
margin: 5px 0 0 5px;
}
.grid-section {
font-family: 'PT Sans Narrow', sans-serif;
font-size: 12pt;
margin: 5px 0px 0 5px;
padding: 20px;
background-color:#dddddd;
height: 380px;
float:left;
}
.grid-section.one-col {
width:275px;
}
.grid-section.two-col-opt {
width:595px;
}
.grid-section.three-col-opt {
width:915px;
}
.first-col {
position:relative;
left:0px;
}
@media all and (max-width: 639px) {
header {
width: 275px;
font-size: 18pt;
}
.grid-section.two-col-opt {
width:275px;
}
}
@media all and (min-width: 640px) {
header {
width: 595px;
}
.grid-section.two-col-opt {
width:275px;
}
}
@media all and (min-width: 960px) {
header {
width: 915px;
}
.grid-section.two-col-opt {
width:595px;
}
}
@media all and (min-width: 1280px) {
header {
width: 1235px;
}
.grid-section.two-col-opt {
width:595px;
}
}