blob: b81c37527e4cd6a1faea6ec0e46777d209d2faed (
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
|
body {
font-family: "Comic Sans", "Comic Sans MS", "Chalkboard",
"ChalkboardSE-Regular", "Marker Felt", "Purisa", "URW Chancery L", cursive,
sans-serif;
color: yellow;
font-size: 20px;
}
#overview {
min-width: min-content;
max-width: max-content;
margin: 0 auto;
}
#tuxDiv {
background: url(/index_files/Tux_Mono.svg.png) repeat;
height: 300px;
width: 100%;
}
#penDiv {
background: url(/index_files/penguin-bod.webp) repeat;
height: 900px;
width: 100%;
}
#mainBod {
background: url(/index_files/Apex_3D_Logo_2_.png) repeat;
border: 70px solid;
content: "";
opacity: 0.75;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;
border-image: url(/index_files/dollarspindownd.gif) 50 / 6 / 0 stretch;
}
#linhead {
background: white;
color: black;
}
.lincontent {
color: black;
vertical-align: top;
width: 40%;
}
.navctr {
margin-bottom: 30px;
height: 36px;
min-width: min-content;
max-width: max-content;
background-color: black;
color: white;
border: 1px solid #e5e5e5;
}
.nav > ul > li:last-child > a {
border-right: 0;
}
.nav-img {
height: 15px;
}
.nav-link {
padding-right: 12px;
padding-left: 12px;
padding-bottom: 11px;
padding-top: 11px;
line-height: 16px;
margin: 0;
border-left: 1px solid #f5f5f5;
border-right: 1px solid #f5f5f5;
border-bottom: 1px solid #f5f5f5;
border-radius: 0;
color: yellow;
background: black;
display: block;
}
.nav-link:hover {
padding-left: 13px;
background: yellow;
color: black;
border-right-color: #ddd;
border-left: 0;
}
.addBanner {
width: 469px;
margin: auto;
height: 80px;
text-align: center;
font-family: "Comic Sans MS", sans-serif;
line-height: 80px;
background-color: white;
color: darkblue;
}
.apexAlert {
color: #00cfff !important;
text-decoration: none;
font-size: 40px;
line-height: 35px;
}
.nav {
margin: 0 0 10px 0px;
padding: 0;
list-style: none;
}
.container {
margin: auto;
width: 75%;
}
blink {
animation: blink 1s linear infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
40% {
opacity: 0;
}
41% {
opacity: 1;
}
99% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.subhead {
padding-bottom: 0;
margin-bottom: 9px;
}
li {
float: left;
line-height: 20px;
list-style: none;
}
|