-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
84 lines (63 loc) · 1.31 KB
/
Copy pathpopup.css
File metadata and controls
84 lines (63 loc) · 1.31 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
body {
height: 500px;
width: 600px;
outline: none;
}
h2 {
font-family: Arial, Helvetica, sans-serif;
padding-bottom: 5px;
margin: 0;
color: cornflowerblue;
}
div.popupTitle {
border-width: 0px 0px 0px 0px;
border-color: silver;
border-style: solid;
display: flex;
}
div.leftListItem {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
padding-top:5px;
float: left;
width: 122px;
border-right-style: solid;
border-right-color: silver;
border-right-width: 1px;
display: table;
}
div.rightListItem {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
padding-top: 5px;
padding-left: 5px;
display: table;
}
div.error {
font-family: Arial, Helvetica, sans-serif;
font-size: 14pt;
padding-top: 50px;
text-align: center;
display: flex;
}
a:hover, a:visited, a:link, a:active {
color:blue;
text-decoration: none;
}
input[type=text] {
width: 90%;
padding: 6px 6px;
box-sizing: border-box;
margin-right: 0px;
}
.submit {
width: 9%;
padding: 6px 6px;
box-sizing: border-box;
margin-left: 0px;
}
/* input[type=button], input[type=submit], input[type=reset] {
width: 20%;
padding: 6px 6px;
box-sizing: border-box;
} */