css/main.css

c552a6837becc2f0e75559fe391eeb90d19a3d2b · 2.3 KB · 136 lines raw

1 body {
2 font-family: "Comic Sans", "Comic Sans MS", "Chalkboard",
3 "ChalkboardSE-Regular", "Marker Felt", "Purisa", "URW Chancery L", cursive,
4 sans-serif;
5 color: yellow;
6 font-size: 20px;
7 }
8 #overview {
9 min-width: min-content;
10 max-width: max-content;
11 margin: 0 auto;
12 }
13 #tuxDiv {
14 background: url(/index_files/Tux_Mono.svg.png) repeat;
15 height: 300px;
16 width: 100%;
17 }
18 #penDiv {
19 background: url(/index_files/penguin-bod.webp) repeat;
20 height: 900px;
21 width: 100%;
22 }
23 #mainBod {
24 background: url(/index_files/Apex_3D_Logo_2_.png) repeat;
25 border: 70px solid;
26 content: "";
27 opacity: 0.75;
28 top: 0;
29 left: 0;
30 bottom: 0;
31 right: 0;
32 position: absolute;
33 z-index: -1;
34 border-image: url(/index_files/dollarspindownd.gif) 50 / 6 / 0 stretch;
35 }
36 #linhead {
37 background: white;
38 color: black;
39 }
40 .lincontent {
41 color: black;
42 vertical-align: top;
43 width: 40%;
44 }
45 .navctr {
46 margin-bottom: 30px;
47 height: 36px;
48 min-width: min-content;
49 max-width: max-content;
50 background-color: black;
51 color: white;
52 border: 1px solid #e5e5e5;
53 }
54
55 .nav > ul > li:last-child > a {
56 border-right: 0;
57 }
58 .nav-img {
59 height: 15px;
60 }
61 .nav-link {
62 padding-right: 12px;
63 padding-left: 12px;
64 padding-bottom: 11px;
65 padding-top: 11px;
66 line-height: 16px;
67 margin: 0;
68 border-left: 1px solid #f5f5f5;
69 border-right: 1px solid #f5f5f5;
70 border-bottom: 1px solid #f5f5f5;
71 border-radius: 0;
72 color: yellow;
73 background: black;
74 display: block;
75 }
76 .nav-link:hover {
77 padding-left: 13px;
78 background: yellow;
79 color: black;
80 border-right-color: #ddd;
81 border-left: 0;
82 }
83 .addBanner {
84 width: 469px;
85 margin: auto;
86 height: 80px;
87 text-align: center;
88 font-family: "Comic Sans MS", sans-serif;
89 line-height: 80px;
90 background-color: white;
91 color: darkblue;
92 }
93 .apexAlert {
94 color: #00cfff !important;
95 text-decoration: none;
96 font-size: 40px;
97 line-height: 35px;
98 }
99 .nav {
100 margin: 0 0 10px 0px;
101 padding: 0;
102 list-style: none;
103 }
104 .container {
105 margin: auto;
106 width: 75%;
107 }
108 blink {
109 animation: blink 1s linear infinite;
110 }
111 @keyframes blink {
112 0% {
113 opacity: 0;
114 }
115 40% {
116 opacity: 0;
117 }
118 41% {
119 opacity: 1;
120 }
121 99% {
122 opacity: 1;
123 }
124 100% {
125 opacity: 0;
126 }
127 }
128 .subhead {
129 padding-bottom: 0;
130 margin-bottom: 9px;
131 }
132 li {
133 float: left;
134 line-height: 20px;
135 list-style: none;
136 }