author | Pawel Solyga <Pawel.Solyga@gmail.com> |
Thu, 09 Oct 2008 13:50:44 +0000 | |
changeset 288 | 46cd7361dcc4 |
parent 250 | 4d7bf6bdcd8f |
child 341 | cad57d104bc7 |
permissions | -rw-r--r-- |
31
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
1 |
/* |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
2 |
Copyright 2008 the Melange authors. |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
3 |
|
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
5 |
you may not use this file except in compliance with the License. |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
6 |
You may obtain a copy of the License at |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
7 |
|
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
9 |
|
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
10 |
Unless required by applicable law or agreed to in writing, software |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
11 |
distributed under the License is distributed on an "AS IS" BASIS, |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
12 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
13 |
See the License for the specific language governing permissions and |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
14 |
limitations under the License. |
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
15 |
*/ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
16 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
17 |
/* |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
18 |
* STANDARD HTML TAGS |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
19 |
*/ |
31
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
20 |
|
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
21 |
body { |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
22 |
background-color: white; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
23 |
color: black; |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
24 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
25 |
font-family: Arial, sans-serif; |
217
7e121e6ba0dd
Add "Last updated" footer to front page body text, using the modified Property
Todd Larsen <tlarsen@google.com>
parents:
185
diff
changeset
|
26 |
font-size: medium; |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
27 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
28 |
margin: 8px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
29 |
margin-top: 3px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
30 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
31 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
32 |
img { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
33 |
border: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
34 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
35 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
36 |
form { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
37 |
margin: 0; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
38 |
padding: 0; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
39 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
40 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
41 |
li { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
42 |
margin-bottom: 0.25em; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
43 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
44 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
45 |
/* HEADERS */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
46 |
h1 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
47 |
font-size: x-large; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
48 |
margin-top: 0px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
49 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
50 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
51 |
h2 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
52 |
font-size: large; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
53 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
54 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
55 |
h3 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
56 |
font-size: medium; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
57 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
58 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
59 |
h4 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
60 |
font-size: small; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
61 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
62 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
63 |
/* PRE-FORMATTED TEXT */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
64 |
pre, code { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
65 |
color: #007000; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
66 |
font-family: "bogus font here", monospace; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
67 |
font-size: 100%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
68 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
69 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
70 |
pre { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
71 |
border: 1px solid silver; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
72 |
background-color: #f5f5f5; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
73 |
padding: 0.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
74 |
overflow: auto; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
75 |
margin: 2em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
76 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
77 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
78 |
pre ins { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
79 |
color: #cc0000; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
80 |
font-weight: bold; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
81 |
text-decoration: none; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
82 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
83 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
84 |
/* LINKS AND ANCHORS */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
85 |
a:link { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
86 |
color: #0000cc; |
31
8b43c541afa7
First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff
changeset
|
87 |
} |
42
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
88 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
89 |
a:active { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
90 |
color: #cc0000; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
91 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
92 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
93 |
a:visited { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
94 |
color: #551a8b; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
95 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
96 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
97 |
a.selected, .selected a, .selected { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
98 |
color: black; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
99 |
font-weight: bold; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
100 |
text-decoration: none; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
101 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
102 |
|
185
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
103 |
a.novisit { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
104 |
color: #2a55a3; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
105 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
106 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
107 |
a.noul, a.noulv { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
108 |
color: #4182fa; /* #93b7fa; */ |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
109 |
text-decoration: none; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
110 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
111 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
112 |
a:hover.noul { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
113 |
text-decoration: underline; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
114 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
115 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
116 |
a:visited.noul { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
117 |
color: #a32a91; /* #2a55a3; */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
118 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
119 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
120 |
/* TABLES */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
121 |
table { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
122 |
border-collapse: collapse; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
123 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
124 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
125 |
th, td { |
83
3f4f7c540b75
Created response helper respond() function that is used to generate base templates and it's child templates (handles sign in/out links, user name etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
80
diff
changeset
|
126 |
/*padding: 0;*/ |
3f4f7c540b75
Created response helper respond() function that is used to generate base templates and it's child templates (handles sign in/out links, user name etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
80
diff
changeset
|
127 |
padding:2px 5px; |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
128 |
vertical-align: top; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
129 |
text-align: left; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
130 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
131 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
132 |
/* FORM TABLE FIELDS */ |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
133 |
td.formfieldrequired { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
134 |
font-style: italic; |
250
4d7bf6bdcd8f
Make form field components use a smaller font, without shrinking the font
Todd Larsen <tlarsen@google.com>
parents:
246
diff
changeset
|
135 |
font-size: small; |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
136 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
137 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
138 |
td.formfieldhelptext { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
139 |
font-style: italic; |
250
4d7bf6bdcd8f
Make form field components use a smaller font, without shrinking the font
Todd Larsen <tlarsen@google.com>
parents:
246
diff
changeset
|
140 |
font-size: small; |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
141 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
142 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
143 |
td.formfielderror { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
144 |
color: #FF0000; |
250
4d7bf6bdcd8f
Make form field components use a smaller font, without shrinking the font
Todd Larsen <tlarsen@google.com>
parents:
246
diff
changeset
|
145 |
font-size: small; |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
146 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
147 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
148 |
td.formfieldheading { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
149 |
font-weight: bold; |
250
4d7bf6bdcd8f
Make form field components use a smaller font, without shrinking the font
Todd Larsen <tlarsen@google.com>
parents:
246
diff
changeset
|
150 |
font-size: small; |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
151 |
} |
96
4fac7d09fc74
Moved td.formfieldlabel to FORM TABLE FIELDS section.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
89
diff
changeset
|
152 |
|
4fac7d09fc74
Moved td.formfieldlabel to FORM TABLE FIELDS section.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
89
diff
changeset
|
153 |
td.formfieldlabel { |
4fac7d09fc74
Moved td.formfieldlabel to FORM TABLE FIELDS section.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
89
diff
changeset
|
154 |
font-weight: bold; |
250
4d7bf6bdcd8f
Make form field components use a smaller font, without shrinking the font
Todd Larsen <tlarsen@google.com>
parents:
246
diff
changeset
|
155 |
font-size: small; |
96
4fac7d09fc74
Moved td.formfieldlabel to FORM TABLE FIELDS section.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
89
diff
changeset
|
156 |
} |
4fac7d09fc74
Moved td.formfieldlabel to FORM TABLE FIELDS section.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
89
diff
changeset
|
157 |
|
163
1f67538ff619
Add a td.formfielderrorlabel style, to highlight field labels that have errors.
Todd Larsen <tlarsen@google.com>
parents:
121
diff
changeset
|
158 |
td.formfielderrorlabel { |
1f67538ff619
Add a td.formfielderrorlabel style, to highlight field labels that have errors.
Todd Larsen <tlarsen@google.com>
parents:
121
diff
changeset
|
159 |
font-weight: bold; |
1f67538ff619
Add a td.formfielderrorlabel style, to highlight field labels that have errors.
Todd Larsen <tlarsen@google.com>
parents:
121
diff
changeset
|
160 |
color: #FF0000; |
250
4d7bf6bdcd8f
Make form field components use a smaller font, without shrinking the font
Todd Larsen <tlarsen@google.com>
parents:
246
diff
changeset
|
161 |
font-size: small; |
163
1f67538ff619
Add a td.formfielderrorlabel style, to highlight field labels that have errors.
Todd Larsen <tlarsen@google.com>
parents:
121
diff
changeset
|
162 |
} |
185
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
163 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
164 |
/* TABLE QUEUES (used with .list) */ |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
165 |
table#queues { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
166 |
border-collapse: collapse; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
167 |
width: 100%; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
168 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
169 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
170 |
table#queues tr { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
171 |
border-bottom: thin solid lightgray; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
172 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
173 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
174 |
table#queues td { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
175 |
padding: 2px; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
176 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
177 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
178 |
/* |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
179 |
* PAGE ELEMENTS |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
180 |
*/ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
181 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
182 |
#title { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
183 |
border-top: 1px solid #3366cc; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
184 |
background-color: #e5ecf9; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
185 |
font-size: large; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
186 |
font-weight: bold; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
187 |
margin: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
188 |
padding: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
189 |
padding-top: 1px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
190 |
padding-bottom: 1px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
191 |
margin-top: 5px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
192 |
margin-left: 200px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
193 |
padding-left: 3px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
194 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
195 |
|
288
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
196 |
#notice { |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
197 |
margin-left: 200px; |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
198 |
padding: 3px; |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
199 |
} |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
200 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
201 |
#logo { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
202 |
padding-right: 18px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
203 |
position: absolute; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
204 |
left: 0; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
205 |
top: -5px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
206 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
207 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
208 |
#logo img { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
209 |
width: 143px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
210 |
height: 59px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
211 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
212 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
213 |
#login { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
214 |
text-align: right; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
215 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
216 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
217 |
#badge { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
218 |
clear: both; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
219 |
margin-top: 3.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
220 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
221 |
height: 53px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
222 |
font-style: italic; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
223 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
224 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
225 |
#body { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
226 |
border-left: 1px dotted silver; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
227 |
margin-left: 200px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
228 |
margin-right: 25px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
229 |
padding-left: 18px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
230 |
padding-bottom: 25px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
231 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
232 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
233 |
#body .buttons { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
234 |
margin-right: 4px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
235 |
margin-top: 20px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
236 |
} |
83
3f4f7c540b75
Created response helper respond() function that is used to generate base templates and it's child templates (handles sign in/out links, user name etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
80
diff
changeset
|
237 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
238 |
#body a.button, input[type^="submit"], input[type^="button"] { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
239 |
margin: 0; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
240 |
padding: 2px 5px 2px 5px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
241 |
font-family: Arial, Sans-serif; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
242 |
font-size: 12px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
243 |
text-decoration: none; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
244 |
color: #222; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
245 |
cursor: default; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
246 |
background: #ddd url("/soc/content/images/button-background.gif") repeat-x 0 0; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
247 |
border: 1px solid #aaa; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
248 |
} |
83
3f4f7c540b75
Created response helper respond() function that is used to generate base templates and it's child templates (handles sign in/out links, user name etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
80
diff
changeset
|
249 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
250 |
#body a.button:hover, input[type^="submit"]:hover, input[type^="button"]:hover { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
251 |
border-color: #9cf #69e #69e #7af; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
252 |
} |
83
3f4f7c540b75
Created response helper respond() function that is used to generate base templates and it's child templates (handles sign in/out links, user name etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
80
diff
changeset
|
253 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
254 |
#header { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
255 |
height: 50px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
256 |
margin-bottom: 11px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
257 |
position: relative; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
258 |
} |
83
3f4f7c540b75
Created response helper respond() function that is used to generate base templates and it's child templates (handles sign in/out links, user name etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
80
diff
changeset
|
259 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
260 |
#footer { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
261 |
clear: both; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
262 |
text-align: center; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
263 |
margin-top: 3.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
264 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
265 |
background-image: url("http://www.google.com/images/art.gif"); |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
266 |
height: 53px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
267 |
background-repeat: no-repeat; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
268 |
background-position: left center; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
269 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
270 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
271 |
#footer .text { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
272 |
padding-top: 20px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
273 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
274 |
|
217
7e121e6ba0dd
Add "Last updated" footer to front page body text, using the modified Property
Todd Larsen <tlarsen@google.com>
parents:
185
diff
changeset
|
275 |
#lastmodified { |
7e121e6ba0dd
Add "Last updated" footer to front page body text, using the modified Property
Todd Larsen <tlarsen@google.com>
parents:
185
diff
changeset
|
276 |
text-align: right; |
7e121e6ba0dd
Add "Last updated" footer to front page body text, using the modified Property
Todd Larsen <tlarsen@google.com>
parents:
185
diff
changeset
|
277 |
font-size: small; |
7e121e6ba0dd
Add "Last updated" footer to front page body text, using the modified Property
Todd Larsen <tlarsen@google.com>
parents:
185
diff
changeset
|
278 |
} |
7e121e6ba0dd
Add "Last updated" footer to front page body text, using the modified Property
Todd Larsen <tlarsen@google.com>
parents:
185
diff
changeset
|
279 |
|
239
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
280 |
#createdon { |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
281 |
text-align: right; |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
282 |
font-size: small; |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
283 |
} |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
284 |
|
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
285 |
#docsummary { |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
286 |
border: 10px solid #e5ecf9; |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
287 |
border-top: 1px solid #3366cc; |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
288 |
} |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
289 |
|
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
290 |
#docsummary h2 { |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
291 |
margin-top: 0.1em; |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
292 |
background-color: #e5ecf9; |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
293 |
} |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
294 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
295 |
/* SIDEBAR MENU */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
296 |
#side { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
297 |
width: 200px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
298 |
margin-bottom: 3em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
299 |
float: left; |
246
5d2df032e19e
Shrink the sidebar menu separately from the main body text.
Todd Larsen <tlarsen@google.com>
parents:
239
diff
changeset
|
300 |
font-size: small; |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
301 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
302 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
303 |
#menu ul { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
304 |
margin: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
305 |
padding: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
306 |
list-style-type: none; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
307 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
308 |
font-size: 95%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
309 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
310 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
311 |
#menu ul ul { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
312 |
margin-left: 10px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
313 |
margin-bottom: 0; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
314 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
315 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
316 |
#menu li { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
317 |
margin-top: 4px; |
42
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
318 |
} |
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
319 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
320 |
#menu h4 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
321 |
margin: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
322 |
padding: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
323 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
324 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
325 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
326 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
327 |
/* SEARCH FIELD */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
328 |
#search { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
329 |
margin-top: 2em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
330 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
331 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
332 |
#search .header { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
333 |
font-weight: bold; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
334 |
font-size: 90%; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
335 |
margin-bottom: 1px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
336 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
337 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
338 |
#search .button { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
339 |
margin-top: 1px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
340 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
341 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
342 |
#search .input input { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
343 |
width: 125px; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
344 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
345 |
|
185
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
346 |
/* BLOG FEEDS */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
347 |
.blog { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
348 |
border: 10px solid #e5ecf9; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
349 |
border-top: 1px solid #3366cc; |
42
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
350 |
} |
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
351 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
352 |
.blog h2 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
353 |
margin-top: 0.1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
354 |
background-color: #e5ecf9; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
355 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
356 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
357 |
.blog h2 a { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
358 |
text-decoration: none; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
359 |
color: black; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
360 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
361 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
362 |
.blog h2 a:visited { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
363 |
text-decoration: none; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
364 |
color: black; |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
365 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
366 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
367 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
368 |
.blog .entry { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
369 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
370 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
371 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
372 |
.blog .title { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
373 |
font-size: medium; |
42
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
374 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
375 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
376 |
.blog .author { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
377 |
color: gray; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
378 |
margin-bottom: 0.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
379 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
380 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
381 |
.blog .snippet { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
382 |
background-color: white; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
383 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
384 |
|
185
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
385 |
/* LIST */ |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
386 |
.list { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
387 |
background-color: #E5ECF9; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
388 |
border: 1px solid #93b7fa; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
389 |
border-bottom: 2px solid #93b7fa; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
390 |
padding: 3px; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
391 |
-moz-border-radius: 5px 5px 0px 0px; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
392 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
393 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
394 |
.list .pagination { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
395 |
text-align: right; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
396 |
padding: 3px; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
397 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
398 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
399 |
.list table{ |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
400 |
background-color: white; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
401 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
402 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
403 |
.list table th { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
404 |
background-color: #eeeeec; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
405 |
border-right: 1px solid lightgray; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
406 |
border-top: 1px solid lightgray; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
407 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
408 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
409 |
.list table tr.on { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
410 |
background-color: #ff9; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
411 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
412 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
413 |
.list table tr.off { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
414 |
background-color: #fff; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
415 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
416 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
417 |
.list table td.last { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
418 |
border-right: 1px solid lightgray; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
419 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
420 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
421 |
.list table .first { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
422 |
border-left: 1px solid lightgray; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
423 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
424 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
425 |
/* |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
426 |
* CUSTOM CLASSES |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
427 |
*/ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
428 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
429 |
.todo { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
430 |
color: #cc0000; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
431 |
font-size: 80%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
432 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
433 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
434 |
.newmark { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
435 |
color: red; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
436 |
font-size: 80%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
437 |
vertical-align: top; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
438 |
} |
121
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
439 |
|
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
440 |
.error { |
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
441 |
color: red; |
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
442 |
} |
182
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
443 |
|
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
444 |
.notice { |
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
445 |
background:#fad163; |
288
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
446 |
font-size: small; |
182
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
447 |
font-weight: bold; |
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
448 |
} |
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
449 |
|
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
450 |
.rounded_ul { background: url(/soc/content/images/ul.gif) no-repeat top left; } |
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
451 |
.rounded_ur { background: url(/soc/content/images/ur.gif) no-repeat top right; } |
72f193fb5633
Add rounded corners graphics. Add .notice class and rounded corners classes to soc.css file, those will be used to better visualize submit_message like "Profile saved.".
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
163
diff
changeset
|
452 |
.rounded_ll { background: url(/soc/content/images/ll.gif) no-repeat bottom left; } |
185
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
453 |
.rounded_lr { background: url(/soc/content/images/lr.gif) no-repeat bottom right; } |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
454 |
|
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
455 |
/* Disabled text. */ |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
456 |
.disabled { |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
457 |
color: gray; |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
458 |
} |
2f3bd84bb106
Add list_helpers functions that are going to be used when rendering list views like (Users List, Sponsors List etc).
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
182
diff
changeset
|
459 |