-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFieldset.css
More file actions
59 lines (51 loc) · 978 Bytes
/
Fieldset.css
File metadata and controls
59 lines (51 loc) · 978 Bytes
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
fieldset {
display: block flow-root;
margin: 32px 0px 32px 0px;
padding: 16px;
border: 1px solid var(--article-border);
border-radius: 8px;
}
fieldset legend {
margin: 0px;
padding: 4px 8px;
font-family: "cantarell";
font-weight: bold;
font-style: normal;
font-size: 20px;
text-align: left;
border: 1px solid var(--article-border);
border-radius: 8px;
box-sizing: border-box;
user-select: none;
}
fieldset div {
display: block flex;
margin: 0px 0px 16px 0px;
padding: 0px;
flex-direction: row;
align-items: normal;
justify-content: space-between;
vertical-align: middle;
}
fieldset div:last-of-type {
margin-bottom: 0px;
}
fieldset div label {
display: inline-block;
width: auto;
font-family: 'vera-mono';
font-weight: normal;
font-style: normal;
font-size: 16px;
line-height: 32px;
}
fieldset div label + input {
width: 66%;
}
fieldset div label + select {
width: 66%;
}
fieldset div label + textarea {
width: 66%;
min-height: 5em;
}