-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathstyle.css
More file actions
145 lines (124 loc) · 2 KB
/
Copy pathstyle.css
File metadata and controls
145 lines (124 loc) · 2 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
*/
* {
font-family: sans-serif;
}
button {
background-color: #2196F3; /* Green */
border: none;
color: white;
padding: 10px 20px;
text-align: center;
font-size: 15px;
display: block;
margin: 10px auto;
width: 200px;
}
body {
margin: 60px 40px;
text-align: center;
}
input[type='submit']{
justify-content: center;
width: 100px;
background-color: #2196F3; /* Green */
border: none;
color: white;
padding: 10px 20px;
text-align: center;
font-size: 15px;
display: block;
margin: 10px auto;
width: 200px;
}
input[type='submit']:disabled{
background-color: #cccccc;
}
input[type='file']{
width: 250px;
}
input[type='text'] {
width: 500px;
height: 20px;
text-align:center;
}
label {
text-align: center;
}
.btn-group {
margin: 20px auto;
width: 30%;
}
.checkbox-group {
margin: 20px auto;
text-align: center;
width: 500px;
}
.title {
display: inline-block;
padding-bottom: -10px;
text-align: center;
margin: 20px;
}
.radio-group {
margin: 20px auto;
text-align: center;
width: 500px;
}
.radio-child {
text-align: left;
}
.alert {
margin: 30px 10px;
padding: 10px;
background-color: #3b9610;
color: white;
}
.alert-error {
margin: 30px 10px;
padding: 10px;
background-color: #a51414;
color: white;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
#optional-parameter-form{
text-align:center;
}
.optional-parameter-input{
margin:3px;
}
table {
margin-left: auto;
margin-right: auto;
border: 1px solid black;
table-layout: auto;
width: 100%;
}
th, td {
padding: 10px;
text-align: left;
border: 1px solid black;
}
th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #2196F3;
color: white;
}