app/soc/content/css/soc.css
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 19 Aug 2008 23:13:24 +0000
changeset 83 3f4f7c540b75
parent 80 55542eddada5
child 89 5decd7730e02
permissions -rw-r--r--
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). Updated User model helper text. Added basic user profile view (not finished yet). Added css entries for buttons and added buttons background. Added /user/profile and /user/profile/linkname support in urls.py.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    17
/* ---------------------------- */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    18
/* STANDARD HTML TAG DEFINITION */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
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;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    24
  font-family: Arial, sans-serif;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    25
  font-size: small;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    26
  margin: 8px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    27
  margin-top: 3px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    28
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    29
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    30
img {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    31
  border: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    32
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    33
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    34
h1 {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    35
  font-size: x-large;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    36
  margin-top: 0px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    37
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    38
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    39
h2 {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    40
  font-size: large;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    41
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    42
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    43
h3 {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    44
  font-size: medium;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    45
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    46
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    47
h4 {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    48
  font-size: small;
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
form {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    52
  margin: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    53
  padding: 0;
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
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    56
li {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    57
  margin-bottom: 0.25em;
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
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    60
pre, code {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    61
  color: #007000;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    62
  font-family: "bogus font here", monospace;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    63
  font-size: 100%;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    64
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    65
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    66
pre {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    67
  border: 1px solid silver;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    68
  background-color: #f5f5f5;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    69
  padding: 0.5em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    70
  overflow: auto;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    71
  margin: 2em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    72
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    73
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    74
pre ins {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    75
  color: #cc0000;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    76
  font-weight: bold;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    77
  text-decoration: none;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    78
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    80
/* LINKS DEFINITION  */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    81
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    82
a:link {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    83
  color: #0000cc;
31
8b43c541afa7 First iteration of a "prototype" Melange app, along with an initial Person
Todd Larsen <tlarsen@google.com>
parents:
diff changeset
    84
}
42
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
    85
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    86
a:active {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    87
  color: #cc0000;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    88
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    89
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    90
a:visited {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    91
  color: #551a8b;
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
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    94
a.selected, .selected a, .selected {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    95
  color: black;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    96
  font-weight: bold;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    97
  text-decoration: none;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    98
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
    99
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   100
a.selected:visited, .selected a:visited {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   101
  color: black;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   102
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   103
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   104
/* TABLE DEFINITION */
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   105
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   106
table {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   107
  border-collapse: collapse;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   108
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   109
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   110
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
   111
  /*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
   112
  padding:2px 5px;
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   113
  vertical-align: top;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   114
  text-align: left;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   115
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   116
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   117
    /* FORM FIELDS DEFINITION */ 
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   118
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   119
    td.formfieldrequired {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   120
     font-style: italic;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   121
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   122
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   123
    td.formfieldhelptext {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   124
     font-style: italic;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   125
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   126
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   127
    td.formfielderror {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   128
     color: #FF0000;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   129
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   130
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   131
    td.formfieldheading {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   132
     font-weight: bold;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   133
    }
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
    
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
    td.formfieldlabel {
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
   136
      font-weight: bold;
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
   137
    }
79
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
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   140
/* ---------------------------- */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   141
/* PAGE ELEMENTS DEFINITION */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   142
/* ---------------------------- */
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   143
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   144
#login {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   145
  text-align: right;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   146
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   147
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   148
#header {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   149
  height: 50px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   150
  margin-bottom: 11px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   151
  position: relative;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   152
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   153
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   154
#logo {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   155
  padding-right: 18px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   156
  position: absolute;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   157
  left: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   158
  top: -5px;
42
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
   159
}
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
   160
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   161
        #logo img {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   162
          width: 143px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   163
          height: 59px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   164
        }
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   165
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   166
#title {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   167
  border-top: 1px solid #3366cc;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   168
  background-color: #e5ecf9;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   169
  font-size: large;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   170
  font-weight: bold;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   171
  margin: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   172
  padding: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   173
  padding-top: 1px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   174
  padding-bottom: 1px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   175
  margin-top: 5px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   176
  margin-left: 200px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   177
  padding-left: 3px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   178
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   179
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   180
#badge {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   181
  clear: both;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   182
  margin-top: 3.5em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   183
  margin-bottom: 1em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   184
  height: 53px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   185
  font-style: italic;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   186
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   187
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   188
#body {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   189
  border-left: 1px dotted silver;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   190
  margin-left: 200px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   191
  margin-right: 25px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   192
  padding-left: 18px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   193
  padding-bottom: 25px;
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
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
   196
    #body .buttons {
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
   197
      margin-right: 4px;
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
   198
      margin-top: 20px;
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
   199
    }
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
   200
    
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
   201
    #body a.button, input[type^="submit"], input[type^="button"] {
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
   202
      margin: 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
   203
      padding: 2px 5px 2px 5px;
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
   204
      font-family: Arial, Sans-serif;
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
   205
      font-size: 12px;
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
   206
      text-decoration: none;
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
   207
      color: #222;
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
   208
      cursor: default;
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
   209
      background: #ddd url("/soc/content/images/button-background.gif") repeat-x 0 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
   210
      border: 1px solid #aaa;
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
   211
    }
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
   212
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
   213
    #body a.button:hover, input[type^="submit"]:hover, input[type^="button"]:hover {
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
   214
      border-color: #9cf #69e #69e #7af;
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
   215
    }
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
   216
    
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
   217
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
   218
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   219
#footer {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   220
  clear: both;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   221
  text-align: center;
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
  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
   225
  height: 53px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   226
  background-repeat: no-repeat;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   227
  background-position: left center;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   228
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   229
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   230
    #footer .text {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   231
      padding-top: 20px;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   232
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   233
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   234
/* SIDE BAR MENU DEFINITION */
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   235
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   236
#side {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   237
  width: 200px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   238
  margin-bottom: 3em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   239
  float: left;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   240
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   241
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   242
#menu ul {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   243
  margin: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   244
  padding: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   245
  list-style-type: none;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   246
  margin-bottom: 1em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   247
  font-size: 95%;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   248
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   249
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   250
#menu ul ul {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   251
  margin-left: 10px;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   252
  margin-bottom: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   253
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   254
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   255
#menu li {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   256
  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
   257
}
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
   258
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   259
#menu h4 {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   260
  margin: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   261
  padding: 0;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   262
  margin-bottom: 1em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   263
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   264
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   265
/* ---------------------------- */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   266
/* SEARCH FIELD DEFINITION */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   267
/* ---------------------------- */
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   268
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   269
#search {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   270
  margin-top: 2em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   271
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   272
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   273
    #search .header {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   274
      font-weight: bold;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   275
      font-size: 90%;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   276
      margin-bottom: 1px;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   277
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   278
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   279
    #search .button {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   280
      margin-top: 1px;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   281
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   282
80
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   283
    #search .input input {
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   284
      width: 125px;
55542eddada5 Indents in css file are now 2 spaces long.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 79
diff changeset
   285
    }
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   286
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   287
/* ---------------------------- */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   288
/* BLOG FEED DEFINITION */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   289
/* ---------------------------- */
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
.blog {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   292
  border: 10px solid #e5ecf9;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   293
  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
   294
}
7878a389d558 Updated version of proto.css that defines some "form field" table cell styles
Todd Larsen <tlarsen@google.com>
parents: 31
diff changeset
   295
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   296
.blog h2 {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   297
  margin-top: 0.1em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   298
  background-color: #e5ecf9;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   299
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   300
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   301
.blog h2 a, .blog h2 a:visited {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   302
  text-decoration: none;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   303
  color: black;
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
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   306
.blog .entry {
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
}
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
.blog .title {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   311
   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
   312
}
79
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   313
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   314
.blog .author {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   315
  color: gray;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   316
  margin-bottom: 0.5em;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   317
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   318
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   319
.blog .snippet {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   320
  background-color: white;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   321
}
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   322
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
/* CUSTOM CLASSES DEFINITION */ 
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   325
/* ---------------------------- */
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   326
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   327
.todo {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   328
  color: #cc0000;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   329
  font-size: 80%;
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
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   332
.newmark {
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   333
  color: red;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   334
  font-size: 80%;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   335
  vertical-align: top;
58001ec7720c Home site templates and basic view.
Pawel Solyga <Pawel.Solyga@gmail.com>
parents: 62
diff changeset
   336
}