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
121
122
123
124
125
|
/**
* @license
* SPDX-License-Identifier: AGPL-3.0-or-later
* This file is part of Wolfree.
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*/
.wolfree-pods {
display: flex;
width: 100%;
justify-content: center;
/* padding: 26px 0 20px; */
padding: 26px 0 0;
}
.wolfree-pods>div {
position: relative;
}
.wolfree-pods>div {
max-width: 780px;
width: 100%;
}
.wolfree-pods>div>div {
position: relative;
}
.wolfree-pods>div>div>section {
box-shadow: 0 0 10px 0 hsla(0, 0%, 80%, 0.5), 0 0 1px 0 hsla(0, 0%, 80%, 0.5);
border-radius: 5px;
/* margin-bottom: 20px; */
margin-bottom: 0;
}
.wolfree-pods>div>div>section>section {
border-top-color: transparent;
}
.wolfree-pods>div>div>section>section {
display: flex;
flex-direction: column;
position: relative;
background: #f5f5f5;
outline: none;
border-color: #fff transparent;
border-style: solid;
border-width: 1px;
}
.wolfree-pods>div>div>section>section:first-child {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
}
.wolfree-pods>div>div>section>section>div:is(:first-child) {
min-height: 30px;
font-size: 13px;
font-family: WebRoboto, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN, Meiryo,
メイリオ, Arial, Helvetica, sans-serif;
background: #f5f5f5;
display: flex;
justify-content: space-between;
align-items: center;
padding: 6px 20px;
}
.wolfree-pods>div>div>section>section>div:is(:first-child)>h2 {
color: #678e9c;
margin-right: 20px;
}
.wolfree-pods>div>div>section>section>div:is(:first-child)>select {
/* We style this element manually. */
border-radius: 4px;
border-style: solid;
border-width: thin;
min-height: 20px;
cursor: pointer;
color: #ff6c00;
background-color: #fff;
border-color: #ec561a;
touch-action: manipulation;
}
.wolfree-pods>div>div>section>section>div:not(:first-child) {
display: flex;
align-items: flex-end;
width: 100%;
height: 100%;
background: #fff;
border-radius: inherit;
padding: 6px 20px;
}
.wolfree-pods>div>div>section>section>div:not(:first-child)>div {
position: relative;
flex: 1 1 auto;
}
.wolfree-pods>div>div>section>section>div:not(:first-child)>div>img {
max-width: 100%;
/* width: 100%; */
width: auto;
}
.wolfree-pods>div>div>section>section>div:not(:first-child)>div>div>details>summary {
/* We style this element manually. */
cursor: pointer;
touch-action: manipulation;
}
.wolfree-pods>div>div>section>section>div:not(:first-child)>div>div>details>div {
/* We style this element manually. */
padding: 1rem;
line-height: 2;
touch-action: manipulation;
}
.wolfree-pods>div>div>section>section>div:not(:first-child)>div>div>details>textarea {
/* We style this element manually. */
width: 99%;
height: 50vh;
touch-action: manipulation;
}
|