blob: 26f8eb45316affcaefa99404799e1ccfd91422cd (
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
|
body {
font-family: Arial, Verdana, san-serif;
font-size: 11pt;
color: #666;
margin: 0;
}
nav {
display: block; /* for older browsers */
text-align: right;
margin-bottom: 10px;
padding: 10px;
border-bottom: 1px solid #C6D2EB;
background: -moz-linear-gradient(top, #fff, #EEF1F9 60%, #EEF1F9);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#EEF1F9), color-stop(.6, #EEF1F9));
text-shadow: 1px 1px 1px #fff;
}
nav span {
float: left;
font-weight: bold;
}
a {
color: #2F58A4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
form {
margin: 0;
}
input[type='text'] {
padding: 3px;
}
li {
list-style: none;
}
.error {
margin: 10px 0 10px;
padding: 10px;
text-align: center;
border: 1px solid red;
color: red;
font-weight: bold;
background-color: #ffffcc;
-moz-border-radius: 5px;
border-radius: 5px;
text-shadow: 2px 2px 2px #ccc;
}
#container {
margin-top: 10px;
padding: 10px;
}
#access-level {
text-align: center;
padding: 15px;
border: 1px dotted #C6D2EB;
font-size: 12pt;
-moz-border-radius: 15px;
border-radius: 15px;
width: 550px;
margin-left: auto;
margin-right: auto;
}
#license-server-response span {
font-weight: bold;
}
#license-server-response span.full {
color: green;
}
#license-server-response span.free_trial {
color: orange;
}
#license-server-response span.no {
color: red;
}
|