-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
82 lines (69 loc) · 1.89 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
.mes_text .custom-suggestions {
display: flex;
flex-direction: column;
gap: 0.5em;
margin: 1em 0.5em;
padding: 0.5em;
border: 2px solid var(--SmartThemeBorderColor);
}
.mes_text .custom-suggestions:before {
content: "How does the story continue?";
font-weight: bold;
display: block;
text-align: center;
font-size: 1em;
margin-bottom: 0.5em;
}
.mes_text .custom-suggestions > .custom-suggestion {
display: flex;
}
.mes_text .custom-suggestions > .custom-suggestion button {
color: var(--SmartThemeBodyColor);
background-color: var(--black50a);
border: 1px solid var(--SmartThemeBorderColor);
border-radius: 5px;
padding: 0.75em;
margin: 0.25em 0;
font-size: 1em;
opacity: 0.5;
cursor: pointer;
transition: opacity 0.3s;
align-items: center;
justify-content: center;
text-align: center;
}
.mes_text .custom-suggestions > .custom-suggestion button:hover {
opacity: 1;
}
.mes_text .custom-suggestions > .custom-suggestion button.custom-suggestion {
flex: 1 1 auto;
}
.mes_text .custom-suggestions > .custom-suggestion button.custom-edit-suggestion {
flex: 0 0 auto;
}
.mes_text .custom-suggestions > .custom-suggestion button.custom-edit-suggestion .custom-text {
display: none;
}
@media (max-width: 1200px) {
.mes_text .custom-suggestions {
margin: 0.2em 0;
padding: 0.5em;
gap: 0.5em;
}
.mes_text .custom-suggestions:before {
font-size: 1em;
margin-bottom: 0.3em;
}
.mes_text .custom-suggestions > .custom-suggestion {
flex-direction: column;
}
.mes_text .custom-suggestions > .custom-suggestion button {
font-size: 0.9em;
padding: 0.75em;
margin: 0.1em 0;
width: 100%;
}
.mes_text .custom-suggestions > .custom-suggestion button.custom-edit-suggestion {
margin-top: 0.2em;
}
}