/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 {
4
	width: 500px;
5
	height: 250px;
6
	position: fixed;
7
	z-index: 9999;
57.3.2 by Simon Bergöö
added some files for the popups
8
	/* 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.
9
	margin-left: -250px;
10
	margin-top: -125px;
11
	top: 50%;
12
	left: 50%;
13
	border: 1px solid #d3d3d3;
14
	font: normal 1.3em/100% sans-serif;
15
	background: #f5f5f5;
16
}
17
18
.popup form {
19
	margin-left: 10px;
20
	margin-top: 10px;
21
}
22
23
.popup .popupHeader{
24
	padding: 5px 10px;
25
	color:#FFF;
26
	background-color:#353535;
57.3.2 by Simon Bergöö
added some files for the popups
27
	font-size: 100%;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
28
	font-weight: normal;
29
	line-height: 1.5em;
30
	border-bottom: 1px solid #d3d3d3;
31
}
32
33
34
.popup form ul li {
35
	list-style: none;
36
	height: 40px;
37
}
38
39
.popup form ul li label {
40
	float: left;
41
	width: 10em;
42
	clear: left;
43
	line-height: 30px;
44
}
45
46
.popup input.text {
47
	background-color:white;
48
	width:230px;
57.3.2 by Simon Bergöö
added some files for the popups
49
	font-size:16px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
50
	color:color:#333333;
51
	border-radius: 7px;
57.3.2 by Simon Bergöö
added some files for the popups
52
	padding: 5px;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
53
	height: auto;
54
	vertical-align: bottom;
55
	margin-left: 0;
56
	border: 1px #d3d3d3 solid;
57
}
58
59
.popup input.text:focus {
60
	outline: 0;
61
	border-color: #000;
62
}
63
64
65
.popup textarea {
83.2.9 by elof.bigestans at gmail
* Finalized normalization of popups. All popups now have common CSS and HTML structure.
66
	margin-top: .5em;
67
	border-radius: 7px;
68
	border: 1px #d3d3d3 solid;
69
}
70
71
.popup textarea:focus {
72
	outline: 0;
73
	border-color: #000;
74
}
75
76
.popup span {
77
	font-size: 100%;
83.2.7 by elof.bigestans at gmail
Started work on normalizing popups. Lots to go.
78
	line-height: 30px;
79
}
80
81
82
.popup .bottomMenu {
83
	position: absolute;
84
	bottom: 10px;
85
}
86
87
.popup .popupButton {
88
	display:inline-block !important;
89
	height:35px;
90
	width:100px;
91
	color: #666;
92
	border-radius: 7px;
93
	border: 1px #d3d3d3 outset;
94
	background-image: linear-gradient(to top,#fff,#f5f5f5);
95
}
96
97
.popup .popupButton:hover {
98
	cursor: pointer;
99
	background: #fefefe;
100
	color: #000;
101
}
102
103
.popup .popupButton:active {
104
	border: 1px #d3d3d3 inset;
105
}
106
107
.popup .popupButton:focus {
108
	border-color: #000;
109
	outline: 0;
110
}
111
112
.popup .hint {
113
	float: right;
114
}
115
57.3.2 by Simon Bergöö
added some files for the popups
116