"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

style.css 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563
  1. /*
  2. Made by DFiNE (Kenneth Hedahl)
  3. Copyright DIS (www.dfine.net)
  4. */
  5. /* Global styles */
  6. @charset "UTF-8";
  7. *, *:before, *:after {
  8. padding:0px;
  9. margin:0px;
  10. box-sizing: inherit;
  11. }
  12. html {
  13. height: 100%;
  14. box-sizing: border-box;
  15. }
  16. body {
  17. background:url('../img/bg.png');
  18. font-family:verdana, arial;
  19. position: relative;
  20. padding-bottom:200px;
  21. min-height: 100%;
  22. overflow-y:scroll;
  23. }
  24. a {
  25. text-decoration:none;
  26. color:#578282;
  27. }
  28. a:hover {
  29. color:#789b9b;
  30. }
  31. /* General site buildup */
  32. .contentwrapper {
  33. width:990px;
  34. margin-left:auto;
  35. margin-right:auto;
  36. /*min-height:800px;*/
  37. }
  38. .header {
  39. height:75px;
  40. width:100%;
  41. background-color:#111111;
  42. }
  43. .header_logo {
  44. background:url('../img/header.png');
  45. background-repeat:no-repeat;
  46. background-position-y: 15px;
  47. width:200px;
  48. height:70px;
  49. margin-left:20px;
  50. float:left;
  51. }
  52. .header_right {
  53. float:right;
  54. padding-top:50px;
  55. padding-right:50px;
  56. font-size:10px;
  57. color:#333333;
  58. }
  59. .header_right a {
  60. text-decoration:none;
  61. color:#999;
  62. }
  63. .header_right a:hover {
  64. text-decoration:underline;
  65. }
  66. /* Main navigation */
  67. .topnav {
  68. height:30px;
  69. padding-right:5px;
  70. background-color:black;
  71. text-align:right;
  72. padding-top:5px;
  73. padding-bottom:5px;
  74. }
  75. .topnav p {
  76. text-transform:uppercase;
  77. color:red;
  78. font-size:15px;
  79. line-height:12px;
  80. display:inline-block;
  81. }
  82. .topnav button {
  83. height:20px;
  84. font-size:12px;
  85. /*line-height:11px;*/
  86. background-color:red;
  87. color:white;
  88. border:1px solid red;
  89. border-radius:2px;
  90. padding:3px 3px 3px 3px;
  91. }
  92. .mainnav {
  93. border-top:1px solid #2e2e2e;
  94. height:50px;
  95. background-color:#111111;
  96. text-decoration:none;
  97. text-transform:uppercase;
  98. }
  99. .mainnav ul, .mainnav li {
  100. list-style-type:none;
  101. display:inline-block;
  102. }
  103. .mainnav li {
  104. line-height:50px;
  105. padding-left:50px;
  106. }
  107. .mainnav a {
  108. text-decoration:none;
  109. color:#FFF;
  110. height:100%;
  111. }
  112. .mainnav a:hover {
  113. color:#999;
  114. }
  115. /* Content styling */
  116. .content {
  117. width:100%;
  118. color:#FFF;
  119. }
  120. .events {
  121. padding:10px 10px 10px 10px;
  122. }
  123. .events a {
  124. color:#FFF;
  125. }
  126. .events h1 {
  127. color:#FFF;
  128. font-size:20px;
  129. margin-bottom:10px;
  130. text-transform:uppercase;
  131. font-weight:normal;
  132. }
  133. .eventslider img {
  134. max-width:175px;
  135. width:175px;
  136. height:100px;
  137. }
  138. .eventslidertext {
  139. padding-top:5px;
  140. padding-left:1px;
  141. font-size:12px !important;
  142. }
  143. .content-slice {
  144. display:inline-block;
  145. width:460px;
  146. padding:10px 10px 10px 10px;
  147. margin-bottom:10px;
  148. box-sizing: content-box;
  149. }
  150. .content-slice h1 {
  151. display:inline-block;
  152. font-size:20px;
  153. }
  154. .content-slice a {
  155. display:inline-block;
  156. color:#0093a1;
  157. font-size:11px;
  158. }
  159. .content-slice a:before {
  160. content: ">";
  161. padding-right: 3px;
  162. color:#0093a1;
  163. font-size:13px;
  164. }
  165. .event-item {
  166. width:460px;
  167. height:90px;
  168. max-height:90px !important;
  169. margin-top:10px;
  170. box-sizing:border-box;
  171. }
  172. .event-date {
  173. width:50px;
  174. height:50px;
  175. float:left;
  176. background-color:#009ea6;
  177. color:#FFF;
  178. margin-left:5px;
  179. margin-top:10px;
  180. border-top-left-radius: 5px;
  181. border-bottom-left-radius: 5px;
  182. font-family:arial;
  183. text-align:center;
  184. font-size:30px;
  185. }
  186. .event-date span {
  187. display:block;
  188. font-size:12px;
  189. }
  190. .event-content {
  191. width:370px;
  192. height:90px;
  193. float:left;
  194. background-color:#333333;
  195. margin-top:0px;
  196. padding:5px 5px 5px 5px;
  197. border-radius:2px;
  198. box-sizing:border-box;
  199. }
  200. .event-contentext {
  201. width:370px;
  202. height:80px;
  203. float:left;
  204. background-color:#333333;
  205. margin-top:-10px;
  206. padding:5px 5px 5px 5px;
  207. border-radius:2px;
  208. }
  209. .event-left {
  210. padding:10px 10px 10px 10px;
  211. width:250px;
  212. float:left;
  213. font-size:12px;
  214. font-weight:normal;
  215. text-overflow: ellipsis;
  216. overflow: hidden;
  217. height:70px;
  218. }
  219. .event-left h1 {
  220. max-width:250px;
  221. overflow:hidden;
  222. white-space: nowrap;
  223. overflow: hidden;
  224. text-overflow: ellipsis;
  225. }
  226. .event-left p {
  227. text-overflow: ellipsis;
  228. overflow: hidden;
  229. width:200px;
  230. font-size:10px;
  231. }
  232. .event-right {
  233. float:left;
  234. }
  235. .event-right a:before {
  236. content: "";
  237. padding-right: 3px;
  238. color:#0093a1;
  239. font-size:13px;
  240. }
  241. .event-right button {
  242. width:90px;
  243. height:25px;
  244. background-color:#e51937;
  245. color:#FFF;
  246. border:none;
  247. font-weight:bold;
  248. margin-top:30%;
  249. }
  250. .eventextra {
  251. height:80px;
  252. }
  253. .activitybtn {
  254. margin-right:30px;
  255. }
  256. .activitybtn p {
  257. width:16px;
  258. height:16px;
  259. color:#c57e19;
  260. background:transparent;
  261. border:none;
  262. font-size:15px;
  263. display:inline-block;
  264. margin-left:5px;
  265. }
  266. .activitybtn p:hover {
  267. color:#ffa019;
  268. }
  269. .page {
  270. padding:10px 10px 10px 10px;
  271. }
  272. .page h1 {
  273. display:inline-block;
  274. margin-bottom:10px;
  275. font-size: 20px;
  276. margin-bottom: 10px;
  277. text-transform: uppercase;
  278. font-weight: normal;
  279. }
  280. .page p {
  281. margin-bottom:10px;
  282. }
  283. .page ul {
  284. list-style: disc outside;
  285. display:block;
  286. margin-left:20px;
  287. }
  288. .newsitem {
  289. width:100%;
  290. height:150px;
  291. background-color:#333;
  292. margin-bottom:20px;
  293. }
  294. .newsitemimg {
  295. width:20%;
  296. }
  297. .newsitemimg img {
  298. height:150px;
  299. max-width:150px;
  300. }
  301. .newsitemcont {
  302. width:60%;
  303. overflow:hidden;
  304. height:135px;
  305. }
  306. .newsitemcont .newsitemauthor {
  307. width:100%;
  308. border-bottom:1px solid #2e2e2e;
  309. margin-bottom:5px;
  310. }
  311. .newsitemcont .newsitemauthor h2 {
  312. display:inline;
  313. font-size:16px;
  314. }
  315. .newsitemcont .newsitemauthor p {
  316. display:inline;
  317. font-size:12px;
  318. margin-left:1em;
  319. }
  320. .newsitemread {
  321. width:20%;
  322. text-align:center;
  323. }
  324. .newsitemread button {
  325. margin-top:30%;
  326. background-color:#e51937;
  327. color:#FFF;
  328. border:none;
  329. padding:10px 10px 10px 10px;
  330. vertical-align:middle;
  331. }
  332. .newstitle {
  333. font-size:12px;
  334. line-height:20px;
  335. }
  336. .newsbody {
  337. }
  338. .newsbody img {
  339. max-width:970px;
  340. }
  341. .newsbody p {
  342. padding: 3px 3px 3px 3px;
  343. }
  344. .eventslice {
  345. width:319px;
  346. float:left;
  347. height:250px;
  348. margin-left:2px;
  349. margin-right:2px;
  350. margin-bottom:20px;
  351. display:block;
  352. }
  353. .eventslice-top img {
  354. padding-left:5px;
  355. padding-right:5px;
  356. width:320px;
  357. max-width:320px;
  358. }
  359. .eventslice-middle {
  360. display:block;
  361. height:20%;
  362. padding:5px 5px 10px 10px;
  363. overflow:hidden;
  364. }
  365. .eventslice-bottom {
  366. display:block;
  367. height:15%;
  368. padding-left:5px;
  369. padding-right:5px;
  370. }
  371. .eventslice-bottom button {
  372. width:100%;
  373. height:100%;
  374. background-color:#000;
  375. color:#e51937;
  376. border:1px solid #e51937;
  377. }
  378. .contactform {
  379. width:400px;
  380. float:left;
  381. }
  382. .contactform .form-control {
  383. display:table;
  384. }
  385. .contactform .form-control label {
  386. display:block;
  387. margin-top:20px;
  388. }
  389. .contactform .form-control .inputfield {
  390. width:400px;
  391. height:30px;
  392. font-size:20px;
  393. border-radius: 2px;
  394. border:none;
  395. margin-top:1px;
  396. padding:2px 2px 2px 2px;
  397. }
  398. .contactform .form-control textarea {
  399. width:400px;
  400. height:100px;
  401. border-radius: 2px;
  402. border:none;
  403. margin-top:1px;
  404. padding:2px 2px 2px 2px;
  405. }
  406. .contactform .form-control .contactsubmit {
  407. margin-top:20px;
  408. width:150px;
  409. height:50px;
  410. background-color:#000;
  411. color:#e51937;
  412. border:1px solid #e51937;
  413. margin-left:250px;
  414. }
  415. .amenu button {
  416. height:30px;
  417. padding:5px 5px 5px 5px;
  418. }
  419. .nmin {
  420. margin-top:20px;
  421. }
  422. .nmin button {
  423. width:30px;
  424. height:30px;
  425. border:none;
  426. font-size:18px;
  427. /*padding:4px 3px 3px 6px;*/
  428. border-radius:2px;
  429. text-align:center;
  430. margin-right:10px;
  431. }
  432. .nmin table {
  433. text-align:left;
  434. display:table;
  435. border:none;
  436. width:970px;
  437. }
  438. .nmin tr {
  439. width:970px;
  440. height:35px;
  441. font-size:15px;
  442. }
  443. .nmin th {
  444. border:none;
  445. padding-left:5px;
  446. }
  447. .nmin td {
  448. border:none;
  449. padding-left:5px;
  450. }
  451. .nmin tr:nth-child(even) {
  452. background:rgba(255,255,255,0.05)
  453. }
  454. .editorform {
  455. }
  456. .editorform .editformtitle {
  457. width:300px;
  458. height:30px;
  459. }
  460. .editorform input {
  461. width:100px;
  462. height:30px;
  463. }
  464. /* Sitemap */
  465. .sitemap ul {
  466. padding: 0;
  467. margin: 0;
  468. list-style-type: none;
  469. position: relative;
  470. }
  471. .sitemap li {
  472. border-left: 2px solid #FFF;
  473. margin-left: 1em;
  474. padding-left: 1em;
  475. position: relative;
  476. }
  477. .sitemap li li {
  478. margin-left: 0;
  479. }
  480. .sitemap li::before {
  481. content:'┗';
  482. color: #FFF;
  483. position: absolute;
  484. top: -5px;
  485. left: -9px;
  486. }
  487. .sitemap ul > li:last-child {
  488. border-left: 2px solid transparent;
  489. }
  490. .sitemap i {
  491. margin-right:5px;
  492. }
  493. /* Frontpage banner styling - Ugly AF, but works. */
  494. .fbanner {
  495. width:100%;
  496. padding-bottom:20px;
  497. margin-bottom:10px;
  498. border-bottom:2px solid #2e2e2e;
  499. }
  500. .fbanner * {
  501. /* This is a fix, as we have another boxsizing for general style
  502. We have that due to the fact we want the footer to be stuck at the bottom.
  503. */
  504. box-sizing: content-box;
  505. }
  506. .fbanner a {
  507. color:#FFF;
  508. }
  509. .fbanner-bg {
  510. background-color:#000;
  511. height:328px;
  512. }
  513. .fbanner-c1 {
  514. height:85px;
  515. width:160px;
  516. background:url('../img/fbanner/t1.png');
  517. border-right:4px solid black;
  518. border-bottom:4px solid black;
  519. animation-name:fbannerload;
  520. animation-duration:0.5s;
  521. animation-iteration-count: 1;
  522. -webkit-animation-name:fbannerload;
  523. -webkit-animation-duration:0.5s;
  524. -webkit-animation-iteration-count: 1;
  525. }
  526. .fbanner-c2 {
  527. height:85px;
  528. width:129px;
  529. background:url('../img/fbanner/t2.png');
  530. border-right:4px solid black;
  531. border-bottom:4px solid black;
  532. animation-name:fbannerload;
  533. animation-duration:0.6s;
  534. animation-iteration-count: 1;
  535. -webkit-animation-name:fbannerload;
  536. -webkit-animation-duration:0.6s;
  537. -webkit-animation-iteration-count: 1;
  538. }
  539. .fbanner-c3 {
  540. height:85px;
  541. width:140px;
  542. background:url('../img/fbanner/t3.png');
  543. border-right:4px solid black;
  544. border-bottom:4px solid black;
  545. animation-name:fbannerload;
  546. animation-duration:0.7s;
  547. animation-iteration-count: 1;
  548. -webkit-animation-name:fbannerload;
  549. -webkit-animation-duration:0.7s;
  550. -webkit-animation-iteration-count: 1;
  551. }
  552. .fbanner-c4 {
  553. height:85px;
  554. width:137px;
  555. background:url('../img/fbanner/t4.png');
  556. border-right:4px solid black;
  557. border-bottom:4px solid black;
  558. animation-name:fbannerload;
  559. animation-duration:0.8s;
  560. animation-iteration-count: 1;
  561. -webkit-animation-name:fbannerload;
  562. -webkit-animation-duration:0.8s;
  563. -webkit-animation-iteration-count: 1;
  564. }
  565. .fbanner-c5 {
  566. height:85px;
  567. width:137px;
  568. background:url('../img/fbanner/t5.png');
  569. border-right:4px solid black;
  570. border-bottom:4px solid black;
  571. animation-name:fbannerload;
  572. animation-duration:0.9s;
  573. animation-iteration-count: 1;
  574. -webkit-animation-name:fbannerload;
  575. -webkit-animation-duration:0.9s;
  576. -webkit-animation-iteration-count: 1;
  577. }
  578. .fbanner-c6 {
  579. height:85px;
  580. width:137px;
  581. background:url('../img/fbanner/t6.png');
  582. border-right:4px solid black;
  583. border-bottom:4px solid black;
  584. animation-name:fbannerload;
  585. animation-duration:1.0s;
  586. animation-iteration-count: 1;
  587. -webkit-animation-name:fbannerload;
  588. -webkit-animation-duration:1.0s;
  589. -webkit-animation-iteration-count: 1;
  590. }
  591. .fbanner-c7 {
  592. height:85px;
  593. width:126px;
  594. background:url('../img/fbanner/t7.png');
  595. border-bottom:4px solid black;
  596. animation-name:fbannerload;
  597. animation-duration:1.1s;
  598. animation-iteration-count: 1;
  599. -webkit-animation-name:fbannerload;
  600. -webkit-animation-duration:1.1s;
  601. -webkit-animation-iteration-count: 1;
  602. }
  603. .fbanner-track {
  604. width:391px;
  605. height:260px;
  606. background:url('../img/fbanner/track.png');
  607. margin-top:-20px;
  608. }
  609. .fbanner-cm1 {
  610. height:93px;
  611. width:140px;
  612. background:url('../img/fbanner/m1.png');
  613. margin-left:-94px;
  614. border-right:4px solid black;
  615. animation-name:fbannerload;
  616. animation-duration:0.7s;
  617. animation-iteration-count: 1;
  618. -webkit-animation-name:fbannerload;
  619. -webkit-animation-duration:0.7s;
  620. -webkit-animation-iteration-count: 1;
  621. }
  622. .fbanner-cm2 {
  623. height:93px;
  624. width:137px;
  625. background:url('../img/fbanner/m2.png');
  626. border-right:4px solid black;
  627. animation-name:fbannerload;
  628. animation-duration:0.8s;
  629. animation-iteration-count: 1;
  630. -webkit-animation-name:fbannerload;
  631. -webkit-animation-duration:0.8s;
  632. -webkit-animation-iteration-count: 1;
  633. }
  634. .fbanner-cm3 {
  635. height:93px;
  636. width:137px;
  637. background:url('../img/fbanner/m3.png');
  638. border-right:4px solid black;
  639. animation-name:fbannerload;
  640. animation-duration:0.9s;
  641. animation-iteration-count: 1;
  642. -webkit-animation-name:fbannerload;
  643. -webkit-animation-duration:0.9s;
  644. -webkit-animation-iteration-count: 1;
  645. }
  646. .fbanner-cm4 {
  647. height:93px;
  648. width:137px;
  649. background:url('../img/fbanner/m4.png');
  650. border-right:4px solid black;
  651. animation-name:fbannerload;
  652. animation-duration:1.0s;
  653. animation-iteration-count: 1;
  654. -webkit-animation-name:fbannerload;
  655. -webkit-animation-duration:1.0s;
  656. -webkit-animation-iteration-count: 1;
  657. }
  658. .fbanner-cm5 {
  659. height:93px;
  660. width:126px;
  661. background:url('../img/fbanner/m5.png');
  662. animation-name:fbannerload;
  663. animation-duration:1.1s;
  664. animation-iteration-count: 1;
  665. -webkit-animation-name:fbannerload;
  666. -webkit-animation-duration:1.1s;
  667. -webkit-animation-iteration-count: 1;
  668. }
  669. .fbanner-ad {
  670. width:667px;
  671. height:147px;
  672. background-color:white;
  673. background:url('../img/fbanner/redbox.png') repeat 0 0 !important;
  674. background-position-x: 630px;
  675. background-position-y: 603px;
  676. margin-left:-68px;
  677. color:white;
  678. }
  679. .fbanner-adtext {
  680. color:#0093a1;
  681. padding-left:150px;
  682. }
  683. .fbanner-adtext h1 {
  684. color:#FFF;
  685. font-size:30px;
  686. }
  687. .fbanner-adtext p {
  688. padding-left:12px;
  689. padding-top:3px;
  690. font-weight:bold;
  691. }
  692. .fbanner-order {
  693. width:250px;
  694. height:80px;
  695. margin-left:100px;
  696. margin-top:5px;
  697. padding-top:15px;
  698. line-height:30px;
  699. }
  700. .fbanner-order h1 {
  701. font-size:30px;
  702. font-weight:normal;
  703. }
  704. .fbanner-order p {
  705. font-size:15px;
  706. }
  707. @keyframes fbannerload {
  708. 0% {transform:rotateY(180deg);}
  709. 100% {transform:rotateY(360deg);}
  710. }
  711. @-webkit-keyframes fbannerload {
  712. 0% {-webkit-transform:rotateY(180deg);}
  713. 100% {-webkit-transform:rotateY(360deg);}
  714. }
  715. /* Footer elements */
  716. footer {
  717. background-color:#111111;
  718. width:100%;
  719. height:200px;
  720. color:#c4c4c4;
  721. position: absolute;
  722. right: 0;
  723. bottom: 0;
  724. left: 0;
  725. }
  726. footer h1 {
  727. font-size:15px;
  728. text-transform:uppercase;
  729. }
  730. footer p {
  731. font-size:10px;
  732. }
  733. footer li {
  734. list-style:none;
  735. display:inline-block;
  736. }
  737. .footer_wrap {
  738. width:990px;
  739. margin-left:auto;
  740. margin-right:auto;
  741. }
  742. .footer_logo {
  743. width:40%;
  744. height:150px;
  745. background:url('../img/header.png');
  746. background-repeat:no-repeat;
  747. background-position-x: 25px;
  748. background-position-y: 50px;
  749. float:left;
  750. }
  751. .footer_followus {
  752. width:30%;
  753. float:left;
  754. padding-top:40px;
  755. }
  756. .footer_followus .socialicons {
  757. margin-top:20px;
  758. }
  759. .footer_newsletter {
  760. width:30%;
  761. float:left;
  762. padding-top:40px;
  763. }
  764. .footer_links {
  765. width:100%;
  766. border-top:1px solid #2e2e2e;
  767. font-size:10px;
  768. line-height:30px;
  769. }
  770. .footer_links a {
  771. font-size:10px;
  772. }
  773. .footer_links li a {
  774. border-right:1px solid #292929;
  775. padding-right:10px;
  776. padding-left:5px;
  777. }
  778. .footer_links li:last-of-type a {
  779. border:none;
  780. }
  781. /* United styles */
  782. .white {
  783. color:#FFF;
  784. }
  785. .seperator {
  786. border-left:1px solid #333;
  787. margin-left:5px;
  788. margin-right:5px;
  789. }
  790. .socialicons img {
  791. width:28px;
  792. height:28px;
  793. margin-right:10px;
  794. }
  795. .border {
  796. border-bottom:2px solid #2e2e2e;
  797. }
  798. .pull_left { float:left; }
  799. .pull_right { float:right; }
  800. .clear { clear:both; }
  801. /* BTN styles from bootstrap */
  802. .btn:hover {
  803. color: #212529;
  804. text-decoration: none;
  805. }
  806. .btn:focus, .btn.focus {
  807. outline: 0;
  808. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  809. }
  810. .btn.disabled, .btn:disabled {
  811. opacity: 0.65;
  812. }
  813. a.btn.disabled,
  814. fieldset:disabled a.btn {
  815. pointer-events: none;
  816. }
  817. .btn-primary {
  818. color: #fff;
  819. background-color: #007bff;
  820. border-color: #007bff;
  821. }
  822. .btn-primary:hover {
  823. color: #fff;
  824. background-color: #0069d9;
  825. border-color: #0062cc;
  826. }
  827. .btn-primary:focus, .btn-primary.focus {
  828. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  829. }
  830. .btn-primary.disabled, .btn-primary:disabled {
  831. color: #fff;
  832. background-color: #007bff;
  833. border-color: #007bff;
  834. }
  835. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  836. .show > .btn-primary.dropdown-toggle {
  837. color: #fff;
  838. background-color: #0062cc;
  839. border-color: #005cbf;
  840. }
  841. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  842. .show > .btn-primary.dropdown-toggle:focus {
  843. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  844. }
  845. .btn-secondary {
  846. color: #fff;
  847. background-color: #6c757d;
  848. border-color: #6c757d;
  849. }
  850. .btn-secondary:hover {
  851. color: #fff;
  852. background-color: #5a6268;
  853. border-color: #545b62;
  854. }
  855. .btn-secondary:focus, .btn-secondary.focus {
  856. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  857. }
  858. .btn-secondary.disabled, .btn-secondary:disabled {
  859. color: #fff;
  860. background-color: #6c757d;
  861. border-color: #6c757d;
  862. }
  863. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  864. .show > .btn-secondary.dropdown-toggle {
  865. color: #fff;
  866. background-color: #545b62;
  867. border-color: #4e555b;
  868. }
  869. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  870. .show > .btn-secondary.dropdown-toggle:focus {
  871. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  872. }
  873. .btn-success {
  874. color: #fff;
  875. background-color: #28a745;
  876. border-color: #28a745;
  877. }
  878. .btn-success:hover {
  879. color: #fff;
  880. background-color: #218838;
  881. border-color: #1e7e34;
  882. }
  883. .btn-success:focus, .btn-success.focus {
  884. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  885. }
  886. .btn-success.disabled, .btn-success:disabled {
  887. color: #fff;
  888. background-color: #28a745;
  889. border-color: #28a745;
  890. }
  891. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  892. .show > .btn-success.dropdown-toggle {
  893. color: #fff;
  894. background-color: #1e7e34;
  895. border-color: #1c7430;
  896. }
  897. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  898. .show > .btn-success.dropdown-toggle:focus {
  899. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  900. }
  901. .btn-info {
  902. color: #fff;
  903. background-color: #17a2b8;
  904. border-color: #17a2b8;
  905. }
  906. .btn-info:hover {
  907. color: #fff;
  908. background-color: #138496;
  909. border-color: #117a8b;
  910. }
  911. .btn-info:focus, .btn-info.focus {
  912. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  913. }
  914. .btn-info.disabled, .btn-info:disabled {
  915. color: #fff;
  916. background-color: #17a2b8;
  917. border-color: #17a2b8;
  918. }
  919. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  920. .show > .btn-info.dropdown-toggle {
  921. color: #fff;
  922. background-color: #117a8b;
  923. border-color: #10707f;
  924. }
  925. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  926. .show > .btn-info.dropdown-toggle:focus {
  927. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  928. }
  929. .btn-warning {
  930. color: #212529;
  931. background-color: #ffc107;
  932. border-color: #ffc107;
  933. }
  934. .btn-warning:hover {
  935. color: #212529;
  936. background-color: #e0a800;
  937. border-color: #d39e00;
  938. }
  939. .btn-warning:focus, .btn-warning.focus {
  940. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  941. }
  942. .btn-warning.disabled, .btn-warning:disabled {
  943. color: #212529;
  944. background-color: #ffc107;
  945. border-color: #ffc107;
  946. }
  947. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  948. .show > .btn-warning.dropdown-toggle {
  949. color: #212529;
  950. background-color: #d39e00;
  951. border-color: #c69500;
  952. }
  953. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  954. .show > .btn-warning.dropdown-toggle:focus {
  955. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  956. }
  957. .btn-danger {
  958. color: #fff;
  959. background-color: #dc3545;
  960. border-color: #dc3545;
  961. }
  962. .btn-danger:hover {
  963. color: #fff;
  964. background-color: #c82333;
  965. border-color: #bd2130;
  966. }
  967. .btn-danger:focus, .btn-danger.focus {
  968. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  969. }
  970. .btn-danger.disabled, .btn-danger:disabled {
  971. color: #fff;
  972. background-color: #dc3545;
  973. border-color: #dc3545;
  974. }
  975. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  976. .show > .btn-danger.dropdown-toggle {
  977. color: #fff;
  978. background-color: #bd2130;
  979. border-color: #b21f2d;
  980. }
  981. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  982. .show > .btn-danger.dropdown-toggle:focus {
  983. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  984. }
  985. .btn-light {
  986. color: #212529;
  987. background-color: #f8f9fa;
  988. border-color: #f8f9fa;
  989. }
  990. .btn-light:hover {
  991. color: #212529;
  992. background-color: #e2e6ea;
  993. border-color: #dae0e5;
  994. }
  995. .btn-light:focus, .btn-light.focus {
  996. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  997. }
  998. .btn-light.disabled, .btn-light:disabled {
  999. color: #212529;
  1000. background-color: #f8f9fa;
  1001. border-color: #f8f9fa;
  1002. }
  1003. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  1004. .show > .btn-light.dropdown-toggle {
  1005. color: #212529;
  1006. background-color: #dae0e5;
  1007. border-color: #d3d9df;
  1008. }
  1009. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  1010. .show > .btn-light.dropdown-toggle:focus {
  1011. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  1012. }
  1013. .btn-dark {
  1014. color: #fff;
  1015. background-color: #343a40;
  1016. border-color: #343a40;
  1017. }
  1018. .btn-dark:hover {
  1019. color: #fff;
  1020. background-color: #23272b;
  1021. border-color: #1d2124;
  1022. }
  1023. .btn-dark:focus, .btn-dark.focus {
  1024. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  1025. }
  1026. .btn-dark.disabled, .btn-dark:disabled {
  1027. color: #fff;
  1028. background-color: #343a40;
  1029. border-color: #343a40;
  1030. }
  1031. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  1032. .show > .btn-dark.dropdown-toggle {
  1033. color: #fff;
  1034. background-color: #1d2124;
  1035. border-color: #171a1d;
  1036. }
  1037. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  1038. .show > .btn-dark.dropdown-toggle:focus {
  1039. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  1040. }
  1041. .btn-outline-primary {
  1042. color: #007bff;
  1043. border-color: #007bff;
  1044. }
  1045. .btn-outline-primary:hover {
  1046. color: #fff;
  1047. background-color: #007bff;
  1048. border-color: #007bff;
  1049. }
  1050. .btn-outline-primary:focus, .btn-outline-primary.focus {
  1051. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  1052. }
  1053. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  1054. color: #007bff;
  1055. background-color: transparent;
  1056. }
  1057. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  1058. .show > .btn-outline-primary.dropdown-toggle {
  1059. color: #fff;
  1060. background-color: #007bff;
  1061. border-color: #007bff;
  1062. }
  1063. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  1064. .show > .btn-outline-primary.dropdown-toggle:focus {
  1065. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  1066. }
  1067. .btn-outline-secondary {
  1068. color: #6c757d;
  1069. border-color: #6c757d;
  1070. }
  1071. .btn-outline-secondary:hover {
  1072. color: #fff;
  1073. background-color: #6c757d;
  1074. border-color: #6c757d;
  1075. }
  1076. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  1077. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  1078. }
  1079. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  1080. color: #6c757d;
  1081. background-color: transparent;
  1082. }
  1083. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  1084. .show > .btn-outline-secondary.dropdown-toggle {
  1085. color: #fff;
  1086. background-color: #6c757d;
  1087. border-color: #6c757d;
  1088. }
  1089. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  1090. .show > .btn-outline-secondary.dropdown-toggle:focus {
  1091. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  1092. }
  1093. .btn-outline-success {
  1094. color: #28a745;
  1095. border-color: #28a745;
  1096. }
  1097. .btn-outline-success:hover {
  1098. color: #fff;
  1099. background-color: #28a745;
  1100. border-color: #28a745;
  1101. }
  1102. .btn-outline-success:focus, .btn-outline-success.focus {
  1103. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  1104. }
  1105. .btn-outline-success.disabled, .btn-outline-success:disabled {
  1106. color: #28a745;
  1107. background-color: transparent;
  1108. }
  1109. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  1110. .show > .btn-outline-success.dropdown-toggle {
  1111. color: #fff;
  1112. background-color: #28a745;
  1113. border-color: #28a745;
  1114. }
  1115. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  1116. .show > .btn-outline-success.dropdown-toggle:focus {
  1117. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  1118. }
  1119. .btn-outline-info {
  1120. color: #17a2b8;
  1121. border-color: #17a2b8;
  1122. }
  1123. .btn-outline-info:hover {
  1124. color: #fff;
  1125. background-color: #17a2b8;
  1126. border-color: #17a2b8;
  1127. }
  1128. .btn-outline-info:focus, .btn-outline-info.focus {
  1129. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  1130. }
  1131. .btn-outline-info.disabled, .btn-outline-info:disabled {
  1132. color: #17a2b8;
  1133. background-color: transparent;
  1134. }
  1135. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  1136. .show > .btn-outline-info.dropdown-toggle {
  1137. color: #fff;
  1138. background-color: #17a2b8;
  1139. border-color: #17a2b8;
  1140. }
  1141. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  1142. .show > .btn-outline-info.dropdown-toggle:focus {
  1143. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  1144. }
  1145. .btn-outline-warning {
  1146. color: #ffc107;
  1147. border-color: #ffc107;
  1148. }
  1149. .btn-outline-warning:hover {
  1150. color: #212529;
  1151. background-color: #ffc107;
  1152. border-color: #ffc107;
  1153. }
  1154. .btn-outline-warning:focus, .btn-outline-warning.focus {
  1155. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  1156. }
  1157. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  1158. color: #ffc107;
  1159. background-color: transparent;
  1160. }
  1161. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  1162. .show > .btn-outline-warning.dropdown-toggle {
  1163. color: #212529;
  1164. background-color: #ffc107;
  1165. border-color: #ffc107;
  1166. }
  1167. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  1168. .show > .btn-outline-warning.dropdown-toggle:focus {
  1169. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  1170. }
  1171. .btn-outline-danger {
  1172. color: #dc3545;
  1173. border-color: #dc3545;
  1174. }
  1175. .btn-outline-danger:hover {
  1176. color: #fff;
  1177. background-color: #dc3545;
  1178. border-color: #dc3545;
  1179. }
  1180. .btn-outline-danger:focus, .btn-outline-danger.focus {
  1181. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  1182. }
  1183. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  1184. color: #dc3545;
  1185. background-color: transparent;
  1186. }
  1187. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  1188. .show > .btn-outline-danger.dropdown-toggle {
  1189. color: #fff;
  1190. background-color: #dc3545;
  1191. border-color: #dc3545;
  1192. }
  1193. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  1194. .show > .btn-outline-danger.dropdown-toggle:focus {
  1195. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  1196. }
  1197. .btn-outline-light {
  1198. color: #f8f9fa;
  1199. border-color: #f8f9fa;
  1200. }
  1201. .btn-outline-light:hover {
  1202. color: #212529;
  1203. background-color: #f8f9fa;
  1204. border-color: #f8f9fa;
  1205. }
  1206. .btn-outline-light:focus, .btn-outline-light.focus {
  1207. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  1208. }
  1209. .btn-outline-light.disabled, .btn-outline-light:disabled {
  1210. color: #f8f9fa;
  1211. background-color: transparent;
  1212. }
  1213. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  1214. .show > .btn-outline-light.dropdown-toggle {
  1215. color: #212529;
  1216. background-color: #f8f9fa;
  1217. border-color: #f8f9fa;
  1218. }
  1219. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  1220. .show > .btn-outline-light.dropdown-toggle:focus {
  1221. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  1222. }
  1223. .btn-outline-dark {
  1224. color: #343a40;
  1225. border-color: #343a40;
  1226. }
  1227. .btn-outline-dark:hover {
  1228. color: #fff;
  1229. background-color: #343a40;
  1230. border-color: #343a40;
  1231. }
  1232. .btn-outline-dark:focus, .btn-outline-dark.focus {
  1233. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  1234. }
  1235. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  1236. color: #343a40;
  1237. background-color: transparent;
  1238. }
  1239. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  1240. .show > .btn-outline-dark.dropdown-toggle {
  1241. color: #fff;
  1242. background-color: #343a40;
  1243. border-color: #343a40;
  1244. }
  1245. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  1246. .show > .btn-outline-dark.dropdown-toggle:focus {
  1247. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  1248. }
  1249. .btn-link {
  1250. font-weight: 400;
  1251. color: #007bff;
  1252. text-decoration: none;
  1253. }
  1254. .btn-link:hover {
  1255. color: #0056b3;
  1256. text-decoration: underline;
  1257. }
  1258. .btn-link:focus, .btn-link.focus {
  1259. text-decoration: underline;
  1260. box-shadow: none;
  1261. }
  1262. .btn-link:disabled, .btn-link.disabled {
  1263. color: #6c757d;
  1264. pointer-events: none;
  1265. }
  1266. .btn-lg, .btn-group-lg > .btn {
  1267. padding: 0.5rem 1rem;
  1268. font-size: 1.25rem;
  1269. line-height: 1.5;
  1270. border-radius: 0.3rem;
  1271. }
  1272. .btn-sm, .btn-group-sm > .btn {
  1273. padding: 0.25rem 0.5rem;
  1274. font-size: 0.875rem;
  1275. line-height: 1.5;
  1276. border-radius: 0.2rem;
  1277. }
  1278. .btn-block {
  1279. display: block;
  1280. width: 100%;
  1281. }
  1282. .btn-block + .btn-block {
  1283. margin-top: 0.5rem;
  1284. }
  1285. input[type="submit"].btn-block,
  1286. input[type="reset"].btn-block,
  1287. input[type="button"].btn-block {
  1288. width: 100%;
  1289. }
  1290. button {
  1291. border-radius: 0;
  1292. }
  1293. button:focus {
  1294. outline: 1px dotted;
  1295. outline: 5px auto -webkit-focus-ring-color;
  1296. }