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

vcard.css « stylesheets « app - github.com/jappix/jappix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52c7a0864494e18e419a9c3068124c20d0456fed (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*

Jappix - An open social platform
This is the vCard CSS stylesheet for Jappix

-------------------------------------------------

License: AGPL
Author: Valérian Saliou

*/

#vcard label {
    font-size: 0.94em;
    margin-top: 2px;
}

#vcard #vcard-avatar input[type="file"] {
    margin-left: 15px;
}

#vcard .avatar-container {
    float: left;
    text-align: center;
    margin: 20px 0 35px 35px;
    max-width: 96px;
    max-height: 96px;
}

html[dir="rtl"] #vcard .avatar-container {
    margin-right: 35px;
    margin-left: 0;
    float: right;
}

#vcard .avatar {
    max-width: 96px;
    max-height: 96px;
}

#vcard .avatar-delete {
    background-position: 3px -1195px;
    margin: 12px 25px 0 25px;
    padding-left: 20px;
    font-size: 0.9em;
    float: right;
}

html[dir="rtl"] #vcard .avatar-delete {
    float: left;
}

#vcard .no-avatar {
    width: 300px;
    color: #7c2222;
    padding: 10px;
    margin: 15px 0 20px 40px;
    background: #f8cece;
    border: 1px #ba6d6d solid;
    font-size: 0.8em;
}

html[dir="rtl"] #vcard .no-avatar {
    margin-left: auto;
    margin-right: 20px;
}

#vcard .forms textarea {
    height: 111px;
    width: 358px;
    margin: 5px 12px 10px 12px;
}

#vcard .forms .avatar-info {
    border-width: 1px;
    border-style: solid;
    display: none;
    width: 370px;
    height: 15px;
    font-size: 0.85em;
    padding: 10px;
}

#vcard .forms .avatar-wait {
    background-color: #9bcbed;
    color: #0a3858;
    border-color: #306780;
}

#vcard .forms .avatar-ok {
    background-color: #c4ed9b;
    color: #325213;
    border-color: #578030;
}

#vcard .forms .avatar-error {
    background-color: #e79595;
    color: #6a0b0b;
    border-color: #7c1010;
}

#vcard .infos {
    width: 179px;
    height: 328px;
    margin: 15px 15px 15px 0;
    padding: 0 8px;
    float: right;
}

#vcard .infos a {
    text-decoration: underline;
}

#vcard .send {
    float: right;
}

#vcard .send:hover {
    cursor: pointer;
}