-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
118 lines (104 loc) · 1.88 KB
/
style.css
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
.spacer {
margin-top: 20px;
}
.m-avatar {
float:left;
border-radius: 100px;
margin-right: 20px;
width: 60px;
}
.details {
float:left;
}
.connected {
color: #000;
font-size: 16px;
font-weight:bold;
margin-bottom: 10px;
}
.disconnected {
color: #FF0000;
font-size: 16px;
text-align: center;
width: 100%;
}
.account {
border: 1px solid #000;
padding: 15px;
border-radius:4px;
float:left;
margin: 0 0 1em;
min-width: 300px;
}
label {
display:inline-block;
vertical-align: bottom;
text-align:center;
}
.pixelfed {
background: url('assets/img/pixelfed.svg') no-repeat 0 0;
background-size: 30px;
border: none;
border-radius: 50%;
color: transparent;
display: inline-block;
height: 32px;
width: 36px;
vertical-align: middle;
}
.account span.pixelfed {
float: left;
margin-left: -41px;
background-size: 30px;
margin-top: 41px;
}
.mastodon {
background: url('assets/img/mastodon.svg') no-repeat 1px 4px;
background-size: 28px;
border: none;
color: transparent;
display: inline-block;
height: 36px;
width: 36px;
vertical-align: middle;
}
.account span.mastodon {
float: left;
margin-left: -41px;
background-size: 30px;
margin-top: 41px;
}
.peertube {
background: url('assets/img/peertube.svg') no-repeat 7px 4px;
background-size: 24px;
border: none;
color: transparent;
display: inline-block;
height: 36px;
width: 36px;
vertical-align: middle;
}
.instance_url {
max-width: 500px;
}
.instance_type.widefat {
max-width: 160px;
vertical-align: baseline;
}
.settings_page_fediembedi details {
margin: 1em 0;
}
.settings_page_fediembedi details > summary {
background: #ccc;
display: inline-block;
padding: 0.25em;
border-radius: 0.25em;
cursor: pointer;
}
.settings_page_fediembedi details > summary::before {
content: '\25B6';
margin-right: 0.25em;
}
.settings_page_fediembedi details[open] > summary::before {
content: '\25BC';
}