-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
118 lines (117 loc) · 1.83 KB
/
popup.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
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
/*
To remeber:
MaxWidth = 800;
MaxHeight = 600;
*/
body {
margin: 0px;
width: 800px;
}
button {
height: 30px;
width: 150px;
outline: none;
margin-bottom: 10px;
}
.header {
background-color: #000078;
color: white;
}
.instructions {
display: block;
margin-left: 10px;
margin-right: 10px;
}
.instructions ol {
list-style-position: outside;
padding: 0px 0px 0px 20px;
margin-top: 0px;
}
.instructions li {
margin-left: 0px;
}
.header h1 {
margin: 0px;
padding: 10px;
}
.results {
display: none;
margin-left: 10px;
margin-right: 10px;
}
.results .value {
font-size: 150%;
font-weight: bold;
}
.results .box {
font-family: "Segoe UI", Tahoma, sans-serif;
float : left;
text-align: center;
background-color: #000078;
color: white;
}
.results .nodesBox {
width: 300px;
height: 40px;
padding: 7px;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 10px;
}
.results .edgesBox {
width: 300px;
height: 40px;
padding: 7px;
margin-top: 10px;
margin-bottom: 10px;
margin-right: 10px;
}
.results .utilBox {
background-color: #CFCFCF;
width: 117px;
height: 40px;
padding: 7px;
margin-top: 10px;
margin-bottom: 10px;
}
.utilBox a {
text-decoration: none;
color: white;
pointer-events: none;
}
.graph {
border: 1px solid black;
margin-bottom: 10px;
clear : both;
}
.results table {
border: 1px solid black;
width: 100%;
}
.results tbody {
display: block;
overflow: auto;
height: 60px;
width: 770px;
}
.results tbody tr:nth-child(even) {
background: #CCC
}
.results thead tr {
display: block;
background-color: #000078;
color: white;
}
.footer {
margin-top: 10px;
background-color: #000078;
color: white;
height: 20px;
}
.footer #message {
text-align: center;
font-style: italic;
font-size: 95%;
margin-right: 10px;
margin-left: 10px;
}