/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
1
/* Fart */
2
3
.popup > form > ul {
4
	margin: 0 10px;
83.2.12 by elof.bigestans at gmail
* Merged trunk
5
	padding: 0;
6
}
7
8
.popup {
9
	width: 500px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
10
	height: 250px;
11
	position: fixed;
12
	z-index: 9999;
57.3.2 by Simon Bergöö
added some files for the popups
13
	/* negative margins equal to half of width and half of height centers the element in conjunction with top/left: 50%; */
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
14
	margin-left: -250px;
15
	margin-top: -125px;
16
	top: 50%;
17
	left: 50%;
18
	border: 1px solid #d3d3d3;
19
	font: normal 1.3em/100% sans-serif;
20
	background: #f5f5f5;
21
}
22
23
.popup form {
24
	margin-left: 10px;
25
	margin-top: 10px;
26
}
27
28
.popup .popupHeader{
29
	margin: 0;
30
	padding: 5px 10px;
83.2.12 by elof.bigestans at gmail
* Merged trunk
31
	color:#FFF;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
32
	background-color:#353535;
57.3.2 by Simon Bergöö
added some files for the popups
33
	font-size: 100%;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
34
	font-weight: normal;
35
	line-height: 1.5em;
36
	border-bottom: 1px solid #d3d3d3;
37
}
38
39
40
.popup form ul li {
41
	list-style: none;
42
	height: 40px;
43
}
44
45
.popup form ul li label {
46
	float: left;
47
	width: 10em;
48
	clear: left;
49
	line-height: 30px;
50
}
51
52
.popup input.text {
53
	background-color:white;
54
	width:230px;
57.3.2 by Simon Bergöö
added some files for the popups
55
	font-size:16px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
56
	color:color:#333333;
57
	border-radius: 7px;
57.3.2 by Simon Bergöö
added some files for the popups
58
	padding: 5px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
59
	height: auto;
60
	vertical-align: bottom;
61
	margin-left: 0;
62
	border: 1px #d3d3d3 solid;
63
}
64
65
.popup input.text:focus {
66
	outline: 0;
67
	border-color: #000;
68
}
69
70
71
.popup textarea {
83.2.9 by elof.bigestans at gmail
* Finalized normalization of popups. All popups now have common CSS and HTML structure.
72
	margin-top: .5em;
73
	border-radius: 7px;
74
	border: 1px #d3d3d3 solid;
75
}
76
77
.popup textarea:focus {
78
	outline: 0;
79
	border-color: #000;
80
}
81
82
.popup span {
83
	font-size: 100%;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
84
	line-height: 30px;
85
}
86
87
88
.popup .bottomMenu {
89
	position: absolute;
90
	bottom: 10px;
91
}
92
93
.popup .popupButton {
94
	display:inline-block !important;
95
	height:33px;
96
	width:100px;
83.2.12 by elof.bigestans at gmail
* Merged trunk
97
	color: #666;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
98
	border-radius: 7px;
99
	border: 1px #ccc solid;
100
	outline: 0;
83.2.12 by elof.bigestans at gmail
* Merged trunk
101
	background-image: linear-gradient(to top,#f5f5f5,#fff);
102
}
103
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
104
.popup .popupButton:hover {
105
	cursor: pointer;
106
	background: #fefefe;
107
	color: #000;
108
}
109
110
.popup .popupButton:active {
111
	border: 1px #d3d3d3 inset;
112
}
113
114
.popup .popupButton:focus {
115
	border-color: #000;
116
	outline: 0;
117
}
118
119
/* Custom login styling */ 
120
83.2.12 by elof.bigestans at gmail
* Merged trunk
121
#login {
122
	width: 300px;
123
	margin-left: -150px;
124
	height: 180px;
125
	margin-top: -90px;
126
}
127
128
#login.expanded {
129
	height: 216px;
130
}
131
132
#login form {
133
	margin: 10px 0 0;
134
}
135
136
#login .bottomMenu {
137
	left: 10px;
138
	right: 10px;
139
}
140
141
#login .hint {
142
	background: url('../img/loginhint.png');
143
	width: 33px;
144
	height: 33px;
145
	text-indent: -999em;
146
	overflow: hidden;
147
	border: 0;
148
}
149
150
#login .hint:active, #login.expanded .hint {
151
	background: url('../img/loginhint_active.png');
152
}
153
154
#login #hinttext {
155
	border-top: 1px #ccc solid;
156
	margin: 10px -10px -5px;
157
	padding: 5px 0;
158
	color: #999;
159
	text-indent: 10px;
160
	display: none;
161
	height: 20px;
162
	font-size: .6em;
163
}
164
165
#login #hinttext p {
166
	margin: 0;
167
}
168
169
#login #hinttext p.error {
170
	color: red;
171
}
172
173
#login .submit {
174
	float: right;
175
}
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
176
83.2.12 by elof.bigestans at gmail
* Merged trunk
177
#login label {
178
	display: none;
179
}
180
181
#login ul {
182
 margin: 0 10px
183
}
184
185
#login .text {
186
	width: 270px;
187
}
188
57.3.2 by Simon Bergöö
added some files for the popups
189