author | Lennard de Rijk <ljvderijk@gmail.com> |
Mon, 24 Nov 2008 22:34:56 +0000 | |
changeset 584 | ba8a624506e5 |
parent 472 | 519c298a4f87 |
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 |
|
376
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
120 |
|
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
121 |
/* Styles used by Django Forms */ |
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
122 |
ul.errorlist { |
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
123 |
color: #FF0000; |
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
124 |
font-size: small; |
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
125 |
} |
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
126 |
|
ce8b3a9fa0de
Add a style that appears in form error lists produced by Django Forms and
Todd Larsen <tlarsen@google.com>
parents:
352
diff
changeset
|
127 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
128 |
/* TABLES */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
129 |
table { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
130 |
border-collapse: collapse; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
131 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
132 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
133 |
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
|
134 |
/*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
|
135 |
padding:2px 5px; |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
136 |
vertical-align: top; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
137 |
text-align: left; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
138 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
139 |
|
472
519c298a4f87
Move "(required)" text to third column instead of second column in templatetags, it's much more user friendly that way. Add new version of as_table that support our current error messages format, information about required fields and tooltips.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
450
diff
changeset
|
140 |
/* FORM FIELDS */ |
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
141 |
td.formfieldrequired { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
142 |
font-style: italic; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
143 |
font-size: small; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
144 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
145 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
146 |
td.formfieldhelptext { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
147 |
font-style: italic; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
148 |
font-size: small; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
149 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
150 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
151 |
td.formfielderror { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
152 |
color: #FF0000; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
153 |
font-size: small; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
154 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
155 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
156 |
td.formfieldheading { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
157 |
font-weight: bold; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
158 |
font-size: small; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
159 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
160 |
|
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
161 |
td.formfieldlabel { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
162 |
font-weight: bold; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
163 |
font-size: small; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
164 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
165 |
|
472
519c298a4f87
Move "(required)" text to third column instead of second column in templatetags, it's much more user friendly that way. Add new version of as_table that support our current error messages format, information about required fields and tooltips.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
450
diff
changeset
|
166 |
td.formfielderrorlabel, span.formfielderrorlabel { |
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
167 |
font-weight: bold; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
168 |
color: #FF0000; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
169 |
font-size: small; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
170 |
} |
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
|
171 |
|
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 |
/* 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
|
173 |
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
|
174 |
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
|
175 |
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
|
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 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
178 |
table#queues tr { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
179 |
border-bottom: thin solid lightgray; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
180 |
} |
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
|
181 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
182 |
table#queues td { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
183 |
padding: 2px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
184 |
} |
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
|
185 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
186 |
/* |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
187 |
* 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
|
188 |
*/ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
189 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
190 |
#title { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
191 |
border-top: 1px solid #3366cc; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
192 |
background-color: #e5ecf9; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
193 |
font-size: large; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
194 |
font-weight: bold; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
195 |
margin: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
196 |
padding: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
197 |
padding-top: 1px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
198 |
padding-bottom: 1px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
199 |
margin-top: 5px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
200 |
margin-left: 200px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
201 |
padding-left: 3px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
202 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
203 |
|
288
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
204 |
#notice { |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
205 |
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
|
206 |
padding: 3px; |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
207 |
} |
46cd7361dcc4
Add #notice class declaration in soc.css for upcoming notification bar.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
250
diff
changeset
|
208 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
209 |
#logo { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
210 |
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
|
211 |
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
|
212 |
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
|
213 |
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
|
214 |
} |
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 |
#login { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
217 |
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
|
218 |
} |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
219 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
220 |
#badge { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
221 |
clear: both; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
222 |
margin-top: 3.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
223 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
224 |
height: 53px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
225 |
font-style: italic; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
226 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
227 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
228 |
#body { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
229 |
border-left: 1px dotted silver; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
230 |
margin-left: 200px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
231 |
margin-right: 25px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
232 |
padding-left: 18px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
233 |
padding-bottom: 25px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
234 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
235 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
236 |
#body .buttons { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
237 |
margin-right: 4px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
238 |
margin-top: 20px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
239 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
240 |
|
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
241 |
#body a.button, input[type^="submit"], input[type^="button"] { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
242 |
margin: 0; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
243 |
padding: 2px 5px 2px 5px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
244 |
font-family: Arial, Sans-serif; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
245 |
font-size: 12px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
246 |
text-decoration: none; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
247 |
color: #222; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
248 |
cursor: default; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
249 |
background: #ddd url("/soc/content/images/button-background.gif") repeat-x 0 0; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
250 |
border: 1px solid #aaa; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
251 |
} |
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
|
252 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
253 |
#body a.button:hover, input[type^="submit"]:hover, input[type^="button"]:hover { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
254 |
border-color: #9cf #69e #69e #7af; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
255 |
} |
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
|
256 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
257 |
#header { |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
258 |
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
|
259 |
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
|
260 |
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
|
261 |
} |
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
|
262 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
263 |
#footer { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
264 |
clear: both; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
265 |
text-align: center; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
266 |
margin-top: 3.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
267 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
268 |
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
|
269 |
height: 53px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
270 |
background-repeat: no-repeat; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
271 |
background-position: left center; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
272 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
273 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
274 |
#footer .text { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
275 |
padding-top: 20px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
276 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
277 |
|
450
365c2cc68bd7
Making the docs template prettier
Dmitri Gaskin <dmitrig01@gmail.com>
parents:
449
diff
changeset
|
278 |
#created { |
584
ba8a624506e5
Adds and uses a modified_by property in models/work.py
Lennard de Rijk <ljvderijk@gmail.com>
parents:
472
diff
changeset
|
279 |
font-size: x-small; |
ba8a624506e5
Adds and uses a modified_by property in models/work.py
Lennard de Rijk <ljvderijk@gmail.com>
parents:
472
diff
changeset
|
280 |
color:#C0C0C0; |
ba8a624506e5
Adds and uses a modified_by property in models/work.py
Lennard de Rijk <ljvderijk@gmail.com>
parents:
472
diff
changeset
|
281 |
text-align: right; |
239
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
282 |
} |
497da2d890ff
Some styles used by r671, the simplistic Document view.
Todd Larsen <tlarsen@google.com>
parents:
217
diff
changeset
|
283 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
284 |
/* SIDEBAR MENU */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
285 |
#side { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
286 |
width: 200px; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
287 |
margin-bottom: 3em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
288 |
float: left; |
246
5d2df032e19e
Shrink the sidebar menu separately from the main body text.
Todd Larsen <tlarsen@google.com>
parents:
239
diff
changeset
|
289 |
font-size: small; |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
290 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
291 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
292 |
#menu ul { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
293 |
margin: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
294 |
padding: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
295 |
list-style-type: none; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
296 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
297 |
font-size: 95%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
298 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
299 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
300 |
#menu ul ul { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
301 |
margin-left: 10px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
302 |
margin-bottom: 0; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
303 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
304 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
305 |
#menu li { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
306 |
margin-top: 4px; |
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
307 |
list-style-type: none; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
308 |
list-style-image: none; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
309 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
310 |
|
449
a4dc4c9e7356
Allowing + and - to be clicked in the menu
Dmitri Gaskin <dmitrig01@gmail.com>
parents:
426
diff
changeset
|
311 |
#menu img { |
a4dc4c9e7356
Allowing + and - to be clicked in the menu
Dmitri Gaskin <dmitrig01@gmail.com>
parents:
426
diff
changeset
|
312 |
margin-right: 4px; |
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
313 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
314 |
|
449
a4dc4c9e7356
Allowing + and - to be clicked in the menu
Dmitri Gaskin <dmitrig01@gmail.com>
parents:
426
diff
changeset
|
315 |
#menu li.leaf { |
a4dc4c9e7356
Allowing + and - to be clicked in the menu
Dmitri Gaskin <dmitrig01@gmail.com>
parents:
426
diff
changeset
|
316 |
padding-left: 14px; |
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
317 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
318 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
319 |
#menu h4 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
320 |
margin: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
321 |
padding: 0; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
322 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
323 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
324 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
325 |
|
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
326 |
/* SEARCH FIELD */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
327 |
#search { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
328 |
margin-top: 2em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
329 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
330 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
331 |
#search .header { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
332 |
font-weight: bold; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
333 |
font-size: 90%; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
334 |
margin-bottom: 1px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
335 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
336 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
337 |
#search .button { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
338 |
margin-top: 1px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
339 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
340 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
341 |
#search .input input { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
342 |
width: 125px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
343 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
344 |
|
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
|
345 |
/* BLOG FEEDS */ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
346 |
.blog { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
347 |
border: 10px solid #e5ecf9; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
348 |
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
|
349 |
} |
7878a389d558
Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents:
31
diff
changeset
|
350 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
351 |
.blog h2 { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
352 |
margin-top: 0.1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
353 |
background-color: #e5ecf9; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
354 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
355 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
356 |
.blog h2 a { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
357 |
text-decoration: none; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
358 |
color: black; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
359 |
} |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
360 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
361 |
.blog h2 a:visited { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
362 |
text-decoration: none; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
363 |
color: black; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
364 |
} |
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
365 |
|
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
366 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
367 |
.blog .entry { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
368 |
margin-bottom: 1em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
369 |
} |
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 |
.blog .title { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
372 |
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
|
373 |
} |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
374 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
375 |
.blog .author { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
376 |
color: gray; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
377 |
margin-bottom: 0.5em; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
378 |
} |
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 |
.blog .snippet { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
381 |
background-color: white; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
382 |
} |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
383 |
|
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
|
384 |
/* 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
|
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 |
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
|
387 |
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
|
388 |
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
|
389 |
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
|
390 |
-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
|
391 |
} |
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 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
393 |
.list .pagination { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
394 |
text-align: right; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
395 |
padding: 3px; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
396 |
} |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
397 |
|
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
398 |
.list table{ |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
399 |
background-color: white; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
400 |
} |
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
|
401 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
402 |
.list table th { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
403 |
background-color: #eeeeec; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
404 |
border-right: 1px solid lightgray; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
405 |
border-top: 1px solid lightgray; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
406 |
} |
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
|
407 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
408 |
.list table tr.on { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
409 |
background-color: #ff9; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
410 |
} |
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
|
411 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
412 |
.list table tr.off { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
413 |
background-color: #fff; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
414 |
} |
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
|
415 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
416 |
.list table td.last { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
417 |
border-right: 1px solid lightgray; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
418 |
} |
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
|
419 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
420 |
.list table .first { |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
421 |
border-left: 1px solid lightgray; |
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
422 |
} |
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
|
423 |
|
89
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
424 |
/* |
5decd7730e02
Reduce the indent to two spaces per hierarchy level, comment some groups of
Todd Larsen <tlarsen@google.com>
parents:
83
diff
changeset
|
425 |
* 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
|
426 |
*/ |
79
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
427 |
|
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
428 |
.todo { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
429 |
color: #cc0000; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
430 |
font-size: 80%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
431 |
} |
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 |
.newmark { |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
434 |
color: red; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
435 |
font-size: 80%; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
436 |
vertical-align: top; |
58001ec7720c
Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents:
62
diff
changeset
|
437 |
} |
121
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
438 |
|
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
439 |
.error { |
50f0999aee66
This CSS change belonged with soc/templates/soc/error.html committed in r454.
Todd Larsen <tlarsen@google.com>
parents:
96
diff
changeset
|
440 |
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
|
441 |
} |
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
|
442 |
|
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 |
.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
|
444 |
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
|
445 |
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
|
446 |
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
|
447 |
} |
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 |
.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
|
450 |
.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
|
451 |
.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
|
452 |
.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
|
453 |
|
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 |
/* 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
|
455 |
.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
|
456 |
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
|
457 |
} |
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 |
|
423
25665d645fa8
Add javascript expandable menus.
Augie Fackler <durin42@gmail.com>
parents:
376
diff
changeset
|
459 |