Project

General

Profile

Statistics
| Revision:

root / trunk / web / css / login.css @ 13

History | View | Annotate | Download (1.43 KB)

1 9 andrej.cim
html, body {
2
    background: #0A80A7;
3
    color: #666;
4
}
5
6
strong {
7
    font-weight: bold;
8
}
9
10
h1 {
11
    color: #0A80A7;
12
    font-weight: bold;
13
    font-size: 18px;
14
    text-align: center;
15
    margin: 0 0 10px 0;
16
}
17
18
.wrap {
19
    background: #fff;
20
    border: 6px solid #80C342;
21
    border-radius: 6px;
22
    -moz-border-radius: 6px;
23
    margin: 20px auto;
24
    width: 300px;
25
    text-align: left;
26
}
27
28
.form {
29
    margin: 20px;
30
    padding: 0;
31
}
32
33
.error {
34
    color: #d00;
35
    margin-top: 10px;
36
}
37
38
label {
39
    display: block;
40
}
41
42
#username, #password {
43
    display: block;
44
    border: 1px solid #ccc;
45
    background: #efefef;
46
    padding: 4px 0;
47
    width: 100%;
48
    margin: 2px 0 6px 0;
49
}
50
51
#submit {
52
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fefefe), to(#dddddd));
53
    background: -moz-linear-gradient(0% 100% 90deg,#dddddd, #fefefe);
54
    border: 1px solid #ccc;
55
    border-radius: 4px;
56
    -moz-border-radius: 4px;
57
    cursor: pointer;
58
    font-size: 14px;
59
    float: right;
60
    padding: 6px 8px;
61
}
62
63
#submit:hover {
64
    color: #4183C4;
65
}
66
67
/** AUTO CLEARFIX **/
68
.form:after,
69
.inner-split:after,
70
.inner-split .main-content:after,
71
.client-details-list li:after,
72
.grid .icon:after,
73
.invoice-addresses:after,
74
.address:after,
75
.terms:after,
76
.invoice-summary:after,
77
form div:after,
78
form:after,
79
.clearfix:after {
80
    clear: both;
81
    content: ' ';
82
    display: block;
83
    font-size: 0;
84
    line-height: 0;
85
    visibility: hidden;
86
    width: 0;
87
    height: 0;
88
}