Welcome to mirror list, hosted at ThFree Co, Russian Federation.

login.css « login « webroot « Server « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa4d9e46c0e38fd4b0195780bfbfd64ef9a256f1 (plain)
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
73
74
75
76
@charset "utf-8";

body {
    background: #C0C0C0;
    color: #000;
    font: 100%/1.5em "Arial Black","GillSans",Helvetica,Arial,sans-serif;
    margin: 0;
}

input {
    border: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    -webkit-appearance: none;
}

/* ---------- LOGIN ---------- */

#login {
    border: 0px solid black;
    margin: 50px auto;
    width: 400px;
}

#login h2 {
    background: #3A5E30;
    color: #9DAB98;
    font-size: 28px;
    text-transform: uppercase;
    border-radius: 20px 20px 0 0;
    padding: 18px 20px;
    margin: 0px;
}
#login fieldset{
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    border: 0px;
    padding: 15px 20px;
    margin-left: 0px;
    margin-right: 0px;
}

#login fieldset p {
    color: #777;
    margin-bottom: 14px;
}

#login fieldset p:last-child {
    margin-bottom: 0;
}

#login fieldset input {
    border-radius: 3px;
}

#login fieldset input[type="email"], #login fieldset input[type="password"] {
    background: #eee;
    color: #777;
    padding: 4px 10px;
    width: 328px;
}

#login fieldset input[type="submit"] {
    background: #91AA8A;
    color: #000000;
    width: 100px;
    display: block;
    margin: 0 auto;
    padding: 4px 0;
}

#login fieldset input[type="submit"]:hover {
    background: #91AA8A;
}