summaryrefslogtreecommitdiffhomepage
path: root/html/webbox.css
blob: 39551e02b2f4f31030ae6e08dbd3bd41b82a92df (plain)
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
div, td, h1 {
	font-family: "sans-serif";
}

.title {
	font-size: 16pt;
}

.greyout {
	opacity: 0.7;
	background-color: #FFFFFF;
	z-index: 9; /* behind dialog window which is 10 */
}

.button {
	background-color: #303060;
	border: none;
	color: white;
	padding: 18px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 2px 2px;
	border-radius: 6px;
}

.leftbutton {
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.rightbutton {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.dialogwindow {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 400px;
	margin-top: -200px;
	margin-left: -200px;
	background-color: #FFFFFF;
	opacity: 1;
	z-index: 10;
	border-width: 3px;
	border-style: solid;
	border-color: #808080;
	padding: 10pt;
}

.dialog {
	/*width: 100%;*/
}

.textinput {
	width: calc(100% - 20px);
}

.fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

div.footer {
	font-size: 8pt;
	padding-top: 30pt;
	text-align: center;
}

table.menu {
	width: 100%;
	border: 0; /* 1px solid #000000; */
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	table-layout: fixed;
}

table.menu tr {
	border: 0; /* 1px solid #000000; */
	margin: 0;
	padding: 0;
}

table.menu td.firsttd {
	width: 100%;
	border: 0; /* 1px solid #000000; */
	color: #FFFFFF;
	background-color: #404070;
	margin: 0;
	padding: 0 5px 0 5px;
}

table.menu td.entry {
	width: 60px;
	border: 0; /* 1px solid #000000; */
	color: #FFFFFF;
	background-color: #404070;
	padding: 9px;
	margin: 0;
	cursor: pointer;
}

table.list {
	width: 100%;
	border: 0; /* 1px solid #000000; */
	cursor: pointer;
	background-color: #FFFFFF;
}

table.list tr {
	background-color: #FFFFFF;
}

table.list tr.selectedrow {
	background-color: #CCCCFF;
}

table.list td.type {
	width: 50px;
	border: 0; /* 1px solid #000000; */
}

table.list td.name {
	width: 100%;
	border: 0; /* 1px solid #000000; */
	color: #0000FF;
}