forked from andigandhi/Mastodon-Circles
-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
106 lines (87 loc) · 1.38 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
body {
font-family: sans-serif;
font-size: 20px;
line-height: 200%;
padding-top: 75px;
text-align: center;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #191b22;
color: #d9e1e8;
}
a:link {
color: #aaa0ff;
}
a:visited {
color: #dd87ff;
}
}
input[type="text"]
{
font-size: 110%;
width: 75%;
}
button {
font-size: 110%;
}
canvas {
max-width: 1000px;
width: 90%;
image-rendering: smooth;
}
a:hover {
text-decoration: none;
}
a:active {
color: #ff6200;
}
#outDiv {
display: none;
margin-top: 30px;
}
#outInfo {
font-style: italic;
}
#usersDiv {
line-height: 150%;
font-size: 100%;
display: flex;
justify-content: center;
gap: 2em;
flex-wrap: wrap;
}
.userSubDiv {
min-width: 400px;
max-width: 90%;
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: start;
}
.userItem {
display: inline;
text-align: left;
}
.userItem {
text-decoration: underline 1px;
text-decoration-style: dotted;
}
.userItem:hover {
text-decoration-style: solid;
}
.userHost {
opacity: 0.75;
}
.userImg {
border-radius: 50%;
width: 1em;
height: 1em;
vertical-align: middle;
user-select: none;
-webkit-user-select: none;
margin-right: 0.5em;
}
#credits {
min-width: 90%;
}