loginpane.css
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.enterPane__box
{
margin: 150px auto;
width: 400px;
height: 280px;
padding: 10px;
-webkit-border-radius: 8px/7px;
-moz-border-radius: 8px/7px;
border-radius: 8px/7px;
background-color: white;
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.31);
-moz-box-shadow: 1px 2px 5px rgba(0,0,0,.31);
box-shadow: 1px 2px 5px rgba(0,0,0,.31);
border: solid 1px #cbc9c9;
font-family: 'Ubuntu', sans-serif;
}
.enterPane__header
{
text-align: center;
color:#00b395;
font-weight: bolder;
}
.blue {
background-color: #00b395;
background-image: -webkit-linear-gradient(top,#00b395,#00cdaa);
background-image: -moz-linear-gradient(top,#00b395,#00cdaa);
background-image: -ms-linear-gradient(top,#00b395,#00cdaa);
background-image: -o-linear-gradient(top,#00b395,#00cdaa);
background-image: linear-gradient(top,#00b395,#00cdaa);
border: 1px solid #00b395;
color: white;
font-size: 13px;
font-weight: bold;
text-align: center;
height: 27px;
line-height: 27px;
min-width: 54px;
padding: 0 10px;
text-decoration: none;
}
/*.form-group
{
clear:both;
}*/
.enterPane__link
{
text-decoration: underline;
}
.blue:hover {
border: 1px solid #00b395;
color: white;
background-color: #00b395;
background-image: -webkit-linear-gradient(top,#00b395,#009f85);
background-image: -moz-linear-gradient(top,#00b395,#009f85);
background-image: -ms-linear-gradient(top,#00b395,#009f85);
background-image: -o-linear-gradient(top,#00b395,#009f85);
background-image: linear-gradient(top,#00b395,#009f85);
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
width: auto;
height: 27px;
}