-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.css
91 lines (74 loc) · 1.43 KB
/
main.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
/**
* Copyright (C) 2019 The Software Heritage developers
* See the AUTHORS file at the top-level directory of this distribution
* License: GNU Affero General Public License version 3, or any later version
* See top-level LICENSE file for more information
*/
/* This file contains the main CSS to make the form/application usable,
* without being especially pretty.
*/
#noscriptError {
color: red;
}
.person {
display: inline-block;
}
.role {
display: flex;
flex-wrap: wrap;
gap: 8px;
list-style-type: none;
padding: 0;
}
#inputForm {
max-width: 100%;
display: flex;
flex-wrap: wrap;
}
/* A fieldset that contains only label/input pairs */
.leafFieldset {
flex: auto;
vertical-align: top;
}
p input, p textarea {
width: 100%;
box-sizing: border-box;
}
.dynamicFields {
width: 100%;
}
.dynamicFields .moveButtons {
width: 100%;
display: flex;
justify-content: space-between;
}
#license {
/* License names are long */
min-width: 20em;
}
#funding {
/* Funding names are long */
min-width: 20em;
}
input[type=URL] {
/* URLs are longer than the other fields */
min-width: 20em;
}
.field-description {
color : rgb(100, 104, 103);
font-size: small;
}
#codemetaText {
width: 100%;
min-height: 10em;
border: 1px solid black;
}
#errorMessage {
color: red;
}
input:invalid {
color: red;
}
.selected-license {
margin: 2px;
}