blob: 04f91fd7f1a35fc5def346d170805a2499ac8481 (
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
|
body
{
margin: 0px;
background: #ffffff;
color: #000000;
}
.header
{
background-color: #3f4247;
position: fixed;
height: 60px;
top: 0px;
left: 0px;
right: 0px;
width: 100%;
border: 0px solid #000000;
z-index: 2;
}
.versionHeader
{
background-color: #e6e6e6;
position: fixed;
height: 30px;
top: 60px;
left: 0px;
right: 0px;
width: 100%;
border: 0px solid #000000;
z-index: 2;
}
.versionText
{
color: #455463;
font-family: "arial";
font-size: 17px;
margin: 5px 0px 0px 20px;
}
.mainContent
{
background-color: #ffffff;
position: absolute;
left: 350px;
right: 0px;
top: 90px;
padding: 20px;
}
.mainContentInner
{
margin: 20px 20px 20px 20px;
}
.leftContent
{
background-color: #ffffff;
position: fixed;
left: 0px;
width: 350px;
top: 90px;
height: 100%;
z-index: 1;
border-right:1px solid #e6e6e6;
}
.leftContentInner
{
margin: 20px 20px 20px 20px;
}
.leftContentHeadline
{
border-bottom: 1px solid #e6e6e6;
margin: 0 0 0 0;
padding-bottom: 5px;
color: #000000;
font-size: 28px;
font-weight: bold;
font-family: "arial";
}
.mainContentFooter
{
border-top: 1px solid #e6e6e6;
padding-top: 0px;
margin-top: 30px;
}
.headerLogo
{
margin-top: 5px;
margin-left: 20px;
float: left;
}
.headerBlueRight
{
float: right;
height: 60px;
width: 300px;
background: url(BlueHeaderRight.png);
display: flex;
justify-content: center;
align-items: center;
}
.headerLink
{
color: #ffffff;
font-weight: bold;
font-family: "arial";
text-decoration: none;
font-size: 21px;
margin-left: 20px;
padding-left: 20px;
padding-right: 42px;
background: url(FollowLinkArrow.png) no-repeat center right;
}
|