/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/css/popup.css

  • Committer: Erik Wikström
  • Date: 2013-05-22 09:37:08 UTC
  • mto: This revision was merged to the branch mainline in revision 90.
  • Revision ID: wikxen@gmail.com-20130522093708-jvvqyz03bhdd8wj4
Moved popup-code from header.js to popup-roland.js (popup.js exists). Moved popup-styles from header.css to popup.css.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
        font: 16px Helvetica;
83
83
        font-weight:bold;       
84
84
}
 
85
 
 
86
input.notValid{
 
87
        background: #FF7F50;
 
88
}
 
89
 
 
90
input.Valid{
 
91
        background: #98FB98;
 
92
}
 
93
 
 
94
.errorMessage{
 
95
        float:right;
 
96
        cursor:pointer;
 
97
        font-family: "icomoon";
 
98
        color:white;
 
99
        font-size: 8px;
 
100
        display:inline;
 
101
        opacity:0;
 
102
}
 
103
 
 
104
/* Window for change password */
 
105
#passwordChanger{
 
106
        /* Position & Size */
 
107
        position:fixed;
 
108
        left:35%;
 
109
        top:24%;
 
110
        padding:20px;
 
111
        width:300px;
 
112
        height:150px;
 
113
        
 
114
        /* Colors */    
 
115
        color:white;
 
116
        background-color:#333;
 
117
 
 
118
        /* Fonts */     
 
119
        line-height: 200%;
 
120
        font-family: Helvetica;
 
121
        
 
122
        /* Borders */
 
123
        border-top: 1px solid #555;
 
124
        border-left: 1px solid #555;
 
125
        border-bottom:1px solid #111;
 
126
        border-right:1px solid #111;
 
127
        -webkit-box-shadow: 0 0 8px #000;
 
128
}
 
129
 
 
130
#passwordChanger input{
 
131
        width:40%;
 
132
        margin-right:5px;
 
133
        float:right;
 
134
}
 
135
 
 
136
#passwordChanger .passwordHeader{
 
137
        /* Position & Size */
 
138
        width:320px;
 
139
        height:30px;
 
140
        margin-left:-21px;
 
141
        margin-top:-20px;
 
142
        padding-left:20px;
 
143
        
 
144
        /* Fonts */
 
145
        font-size: 18px;
 
146
        line-height:200%;
 
147
        font-weight: bold;
 
148
        
 
149
        /* Colors */
 
150
        color: #fff;
 
151
        background-color:#333;
 
152
        
 
153
        /* Borders */
 
154
        border-top: 1px solid #555;
 
155
        border-left: 1px solid #555;
 
156
        border-bottom:1px solid #111;
 
157
        border-right:1px solid #111;
 
158
}
 
159
#passwordChanger .passwordHeaderBorder{
 
160
        border-bottom:1px solid #555;
 
161
        width:340px;
 
162
        margin-left:-21px;
 
163
        margin-bottom:5px;
 
164
}
 
165
 
 
166
#passwordChanger .button{
 
167
        /* Position & Size */
 
168
        width:125px;
 
169
        height:33px;
 
170
        margin-top:10px;
 
171
        margin-right:18px;
 
172
        
 
173
        /* Colors */
 
174
        background: #a8a8a8;
 
175
        background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#a8a8a8));
 
176
        background: -moz-linear-gradient(top, #f0f0f0, #a8a8a8);
 
177
        background: linear-gradient(to bottom, #f0f0f0, #a8a8a8);
 
178
        color: #5c5c5c;
 
179
        
 
180
        /* Font */
 
181
        font: 16px Helvetica;
 
182
        font-weight: bold;
 
183
        text-align: center;
 
184
        
 
185
        /* Borders */
 
186
        border: 1px solid #d0d0d0;
 
187
        -webkit-border-radius: 2px;
 
188
        -moz-border-radius: 2px;
 
189
        border-radius: 2px;
 
190
 
 
191
}
 
192
 
85
193
#passwordChanger .button:hover, .button:active, .button:focus {
86
194
        background: #a0a0a0;
87
195
        background: -webkit-gradient(linear, left top, left bottom, from(#d0d0d0), to(#a0a0a0));