-
Notifications
You must be signed in to change notification settings - Fork 2
/
actor-profile.css
101 lines (87 loc) · 1.67 KB
/
actor-profile.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
.profile {
margin-top: 20px;
}
.profile-container {
text-align: center;
}
.distributed-post-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
}
.profile-details {
display: flex;
flex-direction: column;
}
.profile-name {
color: var(--rdp-text-color);
font-weight: bold;
}
.profile-username {
color: var(--rdp-text-color);
margin-top: 1px;
}
.profile-summary {
color: var(--rdp-details-color);
width: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 8px;
margin-bottom: 10px;
overflow-wrap: break-word;
}
.disclaimer {
color: var(--rdp-text-color);
font-size: 1rem;
}
.disclaimer-link{
color: var(--rdp-link-color);
}
follow-button {
appearance: none;
border: 1px solid var(--rdp-border-color);
border-radius: 4px;
box-shadow: rgba(27, 31, 35, 0.1) 0 1px 0;
box-sizing: border-box;
cursor: pointer;
display: inline-block;
font-family: inherit;
font-size: inherit;
font-weight: 600;
line-height: 20px;
padding: 4px 16px;
position: relative;
text-align: center;
text-decoration: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
}
follow-button[state="follow"],
follow-button[state="unfollow"] {
color: #fff;
}
follow-button[state="follow"] {
background-color: #3b82f6;
}
follow-button[state="follow"]:hover {
background-color: #2563eb;
}
follow-button[state="unfollow"] {
background-color: #ef4444;
}
follow-button[state="unfollow"]:hover {
background-color: #dc2626;
}
.actor-profile {
flex: 1;
max-width: 600px;
width: 100%;
margin: 0 20px;
}
@media (max-width: 768px) {
.profile-summary {
width: 100%;
}
}