Subversion Repositories php_users

Rev

Rev 4 | Rev 17 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4 Rev 7
Line 29... Line 29...
29
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
29
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
30
  	margin: 100px auto;
30
  	margin: 100px auto;
31
}
31
}
32
   
32
   
33
.content {
33
.content {
34
   background-color: red;
34
   background-color: green;
35
   width: 400px;
35
   width: 400px;
36
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
36
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
37
  	margin: 100px auto;
37
  	margin: 100px auto;
38
}
38
}
39
 
39
 
Line 91... Line 91...
91
}
91
}
92
.login form input[type="submit"]:hover {
92
.login form input[type="submit"]:hover {
93
	background-color: #2868c7;
93
	background-color: #2868c7;
94
  	transition: background-color 0.2s;
94
  	transition: background-color 0.2s;
95
}
95
}
-
 
96
 
-
 
97
.login_errors {
-
 
98
   background-color: red;
-
 
99
}
-
 
100
 
-
 
101
.login_errors p {
-
 
102
     	text-align: center;
-
 
103
}
-
 
104