"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 30KB

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