~toabctl/loco-team-portal/duplicate-venues_fix-528828

« back to all changes in this revision

Viewing changes to loco_directory/media/css/teams.css

  • Committer: Daniel Holbach
  • Date: 2009-12-23 11:21:21 UTC
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: daniel.holbach@canonical.com-20091223112121-t63f2ssj03p0rdg3
merged lp:~doctormo/loco-directory/teams_page_design - resolved conflict in loco_directory/templates/base.html, updated AUTHORS file, updated translations template

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
float:right;
57
57
margin: -15px 40px;
58
58
}
 
59
 
 
60
/* New LoCo Team Styles - Martin Owens */
 
61
 
 
62
th[scope="row"] {
 
63
  text-align: right;
 
64
  padding-right: 5px;
 
65
  border: 0px solid red;
 
66
  width: 130px;
 
67
}
 
68
 
 
69
td {
 
70
  border: 0px solid black;
 
71
}
 
72
 
 
73
label {
 
74
  font-weight: bold;
 
75
}
 
76
 
 
77
#team {
 
78
  border: 0px #888 outset;
 
79
  height: 400px;
 
80
  margin-left: 70px;
 
81
  margin-right: 70px;
 
82
  margin-top: 50px;
 
83
  position: relative;
 
84
}
 
85
 
 
86
#team-content {
 
87
  z-index: 10;
 
88
  position: absolute;
 
89
  width: 100%;
 
90
  top: -5px;
 
91
  display: table;
 
92
}
 
93
 
 
94
td.branding {
 
95
  width: 192px;
 
96
  height: 192px;
 
97
  vertical-align: top;
 
98
  border: 0px;
 
99
}
 
100
 
 
101
#branding {
 
102
  float: left;
 
103
  width: 192px;
 
104
  height: 192px;
 
105
  border: 0px black solid;
 
106
  margin: 20px;
 
107
  background-image: url(../img/nobranding.png)
 
108
}
 
109
 
 
110
#goback a, #edit a {
 
111
  width: 32px;
 
112
  height: 32px;
 
113
  display: block;
 
114
  text-decoration: none;
 
115
}
 
116
 
 
117
#goback, #edit {
 
118
  position: absolute;
 
119
  top: 0px;
 
120
}
 
121
 
 
122
#goback {
 
123
  left: -12px;
 
124
  top: -2px;
 
125
}
 
126
 
 
127
#goback a {
 
128
  background-color: transparent;
 
129
  background-image: url(../img/back-to-teams.png)
 
130
}
 
131
 
 
132
#edit {
 
133
  right: 5px;
 
134
  top: 3px;
 
135
}
 
136
 
 
137
#edit a {
 
138
  background-color: transparent;
 
139
  background-image: url(../img/edit-team.png)
 
140
}
 
141
 
 
142
.person {
 
143
  display: list-item;
 
144
  list-style-image: none;
 
145
  list-style-type: none;
 
146
  float: left;
 
147
  margin: 4px;
 
148
}
 
149
 
 
150
.person a {
 
151
  width: 64px;
 
152
  height: 64px;
 
153
  display: block;
 
154
  text-decoration: none;
 
155
  border: 1px green solid;
 
156
}
 
157
 
 
158
.person a img {
 
159
  border: 0px solid black;
 
160
}
 
161
 
 
162
.resource {
 
163
  width: 32px;
 
164
  height: 32px;
 
165
  padding: 2px;
 
166
  float: left;
 
167
  border: 1px white solid;
 
168
}
 
169
 
 
170
.resource:hover {
 
171
  border: 1px #eee solid;
 
172
}
 
173
 
 
174
#admins {
 
175
  position; absolute;
 
176
  width: 100%;
 
177
  height: 90px;
 
178
}
 
179
 
 
180
#resources {
 
181
  position: absolute;
 
182
  width: 100%;
 
183
  height: 90px;
 
184
}
 
185
 
 
186
.dbox {
 
187
  position: absolute;
 
188
  padding: 0px;
 
189
  z-index: 0;
 
190
}
 
191
 
 
192
.vert {
 
193
  top: 0px;
 
194
  height: 100%;
 
195
  background-repeat: repeat-y;
 
196
}
 
197
 
 
198
.box-left {
 
199
  background-image: url(../img/box/left.png); 
 
200
  left: -10px;
 
201
  width: 24px;
 
202
}
 
203
 
 
204
.box-right {
 
205
  background-image: url(../img/box/right.png);
 
206
  right: -10px;
 
207
  width: 34px;
 
208
  
 
209
}
 
210
 
 
211
.horz {
 
212
  left: 0px;
 
213
  width: 100%;
 
214
  background-repeat: repeat-x;
 
215
}
 
216
 
 
217
.box-top {
 
218
  background-image: url(../img/box/top.png);
 
219
  top: -10px;
 
220
  height: 24px;
 
221
}
 
222
 
 
223
.box-bottom {
 
224
  background-image: url(../img/box/bottom.png);
 
225
  bottom: -10px;
 
226
  height: 34px;
 
227
}
 
228
 
 
229
.box-top-left {
 
230
  background-image: url(../img/box/top-left.png);
 
231
  top: -10px;
 
232
  left: -10px;
 
233
  height: 24px;
 
234
  width: 24px;
 
235
}
 
236
 
 
237
.box-top-right {
 
238
  background-image: url(../img/box/top-right.png);
 
239
  top: -10px;
 
240
  right: -10px;
 
241
  height: 24px;
 
242
  width: 34px;
 
243
}
 
244
 
 
245
.box-bottom-left {
 
246
  background-image: url(../img/box/bottom-left.png);
 
247
  bottom: -10px;
 
248
  left: -10px;
 
249
  height: 34px;
 
250
  width: 24px;
 
251
}
 
252
 
 
253
.box-bottom-right {
 
254
  background-image: url(../img/box/bottom-right.png);
 
255
  bottom: -10px;
 
256
  right: -10px;
 
257
  height: 34px;
 
258
  width: 34px;
 
259
}
 
260
 
 
261