"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

style.css 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524
  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. /* Frontpage banner styling - Ugly AF, but works. */
  458. .fbanner {
  459. width:100%;
  460. padding-bottom:20px;
  461. margin-bottom:10px;
  462. border-bottom:2px solid #2e2e2e;
  463. }
  464. .fbanner * {
  465. /* This is a fix, as we have another boxsizing for general style
  466. We have that due to the fact we want the footer to be stuck at the bottom.
  467. */
  468. box-sizing: content-box;
  469. }
  470. .fbanner a {
  471. color:#FFF;
  472. }
  473. .fbanner-bg {
  474. background-color:#000;
  475. height:328px;
  476. }
  477. .fbanner-c1 {
  478. height:85px;
  479. width:160px;
  480. background:url('../img/fbanner/t1.png');
  481. border-right:4px solid black;
  482. border-bottom:4px solid black;
  483. animation-name:fbannerload;
  484. animation-duration:0.5s;
  485. animation-iteration-count: 1;
  486. -webkit-animation-name:fbannerload;
  487. -webkit-animation-duration:0.5s;
  488. -webkit-animation-iteration-count: 1;
  489. }
  490. .fbanner-c2 {
  491. height:85px;
  492. width:129px;
  493. background:url('../img/fbanner/t2.png');
  494. border-right:4px solid black;
  495. border-bottom:4px solid black;
  496. animation-name:fbannerload;
  497. animation-duration:0.6s;
  498. animation-iteration-count: 1;
  499. -webkit-animation-name:fbannerload;
  500. -webkit-animation-duration:0.6s;
  501. -webkit-animation-iteration-count: 1;
  502. }
  503. .fbanner-c3 {
  504. height:85px;
  505. width:140px;
  506. background:url('../img/fbanner/t3.png');
  507. border-right:4px solid black;
  508. border-bottom:4px solid black;
  509. animation-name:fbannerload;
  510. animation-duration:0.7s;
  511. animation-iteration-count: 1;
  512. -webkit-animation-name:fbannerload;
  513. -webkit-animation-duration:0.7s;
  514. -webkit-animation-iteration-count: 1;
  515. }
  516. .fbanner-c4 {
  517. height:85px;
  518. width:137px;
  519. background:url('../img/fbanner/t4.png');
  520. border-right:4px solid black;
  521. border-bottom:4px solid black;
  522. animation-name:fbannerload;
  523. animation-duration:0.8s;
  524. animation-iteration-count: 1;
  525. -webkit-animation-name:fbannerload;
  526. -webkit-animation-duration:0.8s;
  527. -webkit-animation-iteration-count: 1;
  528. }
  529. .fbanner-c5 {
  530. height:85px;
  531. width:137px;
  532. background:url('../img/fbanner/t5.png');
  533. border-right:4px solid black;
  534. border-bottom:4px solid black;
  535. animation-name:fbannerload;
  536. animation-duration:0.9s;
  537. animation-iteration-count: 1;
  538. -webkit-animation-name:fbannerload;
  539. -webkit-animation-duration:0.9s;
  540. -webkit-animation-iteration-count: 1;
  541. }
  542. .fbanner-c6 {
  543. height:85px;
  544. width:137px;
  545. background:url('../img/fbanner/t6.png');
  546. border-right:4px solid black;
  547. border-bottom:4px solid black;
  548. animation-name:fbannerload;
  549. animation-duration:1.0s;
  550. animation-iteration-count: 1;
  551. -webkit-animation-name:fbannerload;
  552. -webkit-animation-duration:1.0s;
  553. -webkit-animation-iteration-count: 1;
  554. }
  555. .fbanner-c7 {
  556. height:85px;
  557. width:126px;
  558. background:url('../img/fbanner/t7.png');
  559. border-bottom:4px solid black;
  560. animation-name:fbannerload;
  561. animation-duration:1.1s;
  562. animation-iteration-count: 1;
  563. -webkit-animation-name:fbannerload;
  564. -webkit-animation-duration:1.1s;
  565. -webkit-animation-iteration-count: 1;
  566. }
  567. .fbanner-track {
  568. width:391px;
  569. height:260px;
  570. background:url('../img/fbanner/track.png');
  571. margin-top:-20px;
  572. }
  573. .fbanner-cm1 {
  574. height:93px;
  575. width:140px;
  576. background:url('../img/fbanner/m1.png');
  577. margin-left:-94px;
  578. border-right:4px solid black;
  579. animation-name:fbannerload;
  580. animation-duration:0.7s;
  581. animation-iteration-count: 1;
  582. -webkit-animation-name:fbannerload;
  583. -webkit-animation-duration:0.7s;
  584. -webkit-animation-iteration-count: 1;
  585. }
  586. .fbanner-cm2 {
  587. height:93px;
  588. width:137px;
  589. background:url('../img/fbanner/m2.png');
  590. border-right:4px solid black;
  591. animation-name:fbannerload;
  592. animation-duration:0.8s;
  593. animation-iteration-count: 1;
  594. -webkit-animation-name:fbannerload;
  595. -webkit-animation-duration:0.8s;
  596. -webkit-animation-iteration-count: 1;
  597. }
  598. .fbanner-cm3 {
  599. height:93px;
  600. width:137px;
  601. background:url('../img/fbanner/m3.png');
  602. border-right:4px solid black;
  603. animation-name:fbannerload;
  604. animation-duration:0.9s;
  605. animation-iteration-count: 1;
  606. -webkit-animation-name:fbannerload;
  607. -webkit-animation-duration:0.9s;
  608. -webkit-animation-iteration-count: 1;
  609. }
  610. .fbanner-cm4 {
  611. height:93px;
  612. width:137px;
  613. background:url('../img/fbanner/m4.png');
  614. border-right:4px solid black;
  615. animation-name:fbannerload;
  616. animation-duration:1.0s;
  617. animation-iteration-count: 1;
  618. -webkit-animation-name:fbannerload;
  619. -webkit-animation-duration:1.0s;
  620. -webkit-animation-iteration-count: 1;
  621. }
  622. .fbanner-cm5 {
  623. height:93px;
  624. width:126px;
  625. background:url('../img/fbanner/m5.png');
  626. animation-name:fbannerload;
  627. animation-duration:1.1s;
  628. animation-iteration-count: 1;
  629. -webkit-animation-name:fbannerload;
  630. -webkit-animation-duration:1.1s;
  631. -webkit-animation-iteration-count: 1;
  632. }
  633. .fbanner-ad {
  634. width:667px;
  635. height:147px;
  636. background-color:white;
  637. background:url('../img/fbanner/redbox.png') repeat 0 0 !important;
  638. background-position-x: 630px;
  639. background-position-y: 603px;
  640. margin-left:-68px;
  641. color:white;
  642. }
  643. .fbanner-adtext {
  644. color:#0093a1;
  645. padding-left:150px;
  646. }
  647. .fbanner-adtext h1 {
  648. color:#FFF;
  649. font-size:30px;
  650. }
  651. .fbanner-adtext p {
  652. padding-left:12px;
  653. padding-top:3px;
  654. font-weight:bold;
  655. }
  656. .fbanner-order {
  657. width:250px;
  658. height:80px;
  659. margin-left:100px;
  660. margin-top:5px;
  661. padding-top:15px;
  662. line-height:30px;
  663. }
  664. .fbanner-order h1 {
  665. font-size:30px;
  666. font-weight:normal;
  667. }
  668. .fbanner-order p {
  669. font-size:15px;
  670. }
  671. @keyframes fbannerload {
  672. 0% {transform:rotateY(180deg);}
  673. 100% {transform:rotateY(360deg);}
  674. }
  675. @-webkit-keyframes fbannerload {
  676. 0% {-webkit-transform:rotateY(180deg);}
  677. 100% {-webkit-transform:rotateY(360deg);}
  678. }
  679. /* Footer elements */
  680. footer {
  681. background-color:#111111;
  682. width:100%;
  683. height:200px;
  684. color:#c4c4c4;
  685. position: absolute;
  686. right: 0;
  687. bottom: 0;
  688. left: 0;
  689. }
  690. footer h1 {
  691. font-size:15px;
  692. text-transform:uppercase;
  693. }
  694. footer p {
  695. font-size:10px;
  696. }
  697. footer li {
  698. list-style:none;
  699. display:inline-block;
  700. }
  701. .footer_wrap {
  702. width:990px;
  703. margin-left:auto;
  704. margin-right:auto;
  705. }
  706. .footer_logo {
  707. width:40%;
  708. height:150px;
  709. background:url('../img/header.png');
  710. background-repeat:no-repeat;
  711. background-position-x: 25px;
  712. background-position-y: 50px;
  713. float:left;
  714. }
  715. .footer_followus {
  716. width:30%;
  717. float:left;
  718. padding-top:40px;
  719. }
  720. .footer_followus .socialicons {
  721. margin-top:20px;
  722. }
  723. .footer_newsletter {
  724. width:30%;
  725. float:left;
  726. padding-top:40px;
  727. }
  728. .footer_links {
  729. width:100%;
  730. border-top:1px solid #2e2e2e;
  731. font-size:10px;
  732. line-height:30px;
  733. }
  734. .footer_links a {
  735. font-size:10px;
  736. }
  737. .footer_links li a {
  738. border-right:1px solid #292929;
  739. padding-right:10px;
  740. padding-left:5px;
  741. }
  742. .footer_links li:last-of-type a {
  743. border:none;
  744. }
  745. /* United styles */
  746. .white {
  747. color:#FFF;
  748. }
  749. .seperator {
  750. border-left:1px solid #333;
  751. margin-left:5px;
  752. margin-right:5px;
  753. }
  754. .socialicons img {
  755. width:28px;
  756. height:28px;
  757. margin-right:10px;
  758. }
  759. .border {
  760. border-bottom:2px solid #2e2e2e;
  761. }
  762. .pull_left { float:left; }
  763. .pull_right { float:right; }
  764. .clear { clear:both; }
  765. /* BTN styles from bootstrap */
  766. .btn:hover {
  767. color: #212529;
  768. text-decoration: none;
  769. }
  770. .btn:focus, .btn.focus {
  771. outline: 0;
  772. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  773. }
  774. .btn.disabled, .btn:disabled {
  775. opacity: 0.65;
  776. }
  777. a.btn.disabled,
  778. fieldset:disabled a.btn {
  779. pointer-events: none;
  780. }
  781. .btn-primary {
  782. color: #fff;
  783. background-color: #007bff;
  784. border-color: #007bff;
  785. }
  786. .btn-primary:hover {
  787. color: #fff;
  788. background-color: #0069d9;
  789. border-color: #0062cc;
  790. }
  791. .btn-primary:focus, .btn-primary.focus {
  792. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  793. }
  794. .btn-primary.disabled, .btn-primary:disabled {
  795. color: #fff;
  796. background-color: #007bff;
  797. border-color: #007bff;
  798. }
  799. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  800. .show > .btn-primary.dropdown-toggle {
  801. color: #fff;
  802. background-color: #0062cc;
  803. border-color: #005cbf;
  804. }
  805. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  806. .show > .btn-primary.dropdown-toggle:focus {
  807. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  808. }
  809. .btn-secondary {
  810. color: #fff;
  811. background-color: #6c757d;
  812. border-color: #6c757d;
  813. }
  814. .btn-secondary:hover {
  815. color: #fff;
  816. background-color: #5a6268;
  817. border-color: #545b62;
  818. }
  819. .btn-secondary:focus, .btn-secondary.focus {
  820. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  821. }
  822. .btn-secondary.disabled, .btn-secondary:disabled {
  823. color: #fff;
  824. background-color: #6c757d;
  825. border-color: #6c757d;
  826. }
  827. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  828. .show > .btn-secondary.dropdown-toggle {
  829. color: #fff;
  830. background-color: #545b62;
  831. border-color: #4e555b;
  832. }
  833. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  834. .show > .btn-secondary.dropdown-toggle:focus {
  835. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  836. }
  837. .btn-success {
  838. color: #fff;
  839. background-color: #28a745;
  840. border-color: #28a745;
  841. }
  842. .btn-success:hover {
  843. color: #fff;
  844. background-color: #218838;
  845. border-color: #1e7e34;
  846. }
  847. .btn-success:focus, .btn-success.focus {
  848. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  849. }
  850. .btn-success.disabled, .btn-success:disabled {
  851. color: #fff;
  852. background-color: #28a745;
  853. border-color: #28a745;
  854. }
  855. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  856. .show > .btn-success.dropdown-toggle {
  857. color: #fff;
  858. background-color: #1e7e34;
  859. border-color: #1c7430;
  860. }
  861. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  862. .show > .btn-success.dropdown-toggle:focus {
  863. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  864. }
  865. .btn-info {
  866. color: #fff;
  867. background-color: #17a2b8;
  868. border-color: #17a2b8;
  869. }
  870. .btn-info:hover {
  871. color: #fff;
  872. background-color: #138496;
  873. border-color: #117a8b;
  874. }
  875. .btn-info:focus, .btn-info.focus {
  876. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  877. }
  878. .btn-info.disabled, .btn-info:disabled {
  879. color: #fff;
  880. background-color: #17a2b8;
  881. border-color: #17a2b8;
  882. }
  883. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  884. .show > .btn-info.dropdown-toggle {
  885. color: #fff;
  886. background-color: #117a8b;
  887. border-color: #10707f;
  888. }
  889. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  890. .show > .btn-info.dropdown-toggle:focus {
  891. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  892. }
  893. .btn-warning {
  894. color: #212529;
  895. background-color: #ffc107;
  896. border-color: #ffc107;
  897. }
  898. .btn-warning:hover {
  899. color: #212529;
  900. background-color: #e0a800;
  901. border-color: #d39e00;
  902. }
  903. .btn-warning:focus, .btn-warning.focus {
  904. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  905. }
  906. .btn-warning.disabled, .btn-warning:disabled {
  907. color: #212529;
  908. background-color: #ffc107;
  909. border-color: #ffc107;
  910. }
  911. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  912. .show > .btn-warning.dropdown-toggle {
  913. color: #212529;
  914. background-color: #d39e00;
  915. border-color: #c69500;
  916. }
  917. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  918. .show > .btn-warning.dropdown-toggle:focus {
  919. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  920. }
  921. .btn-danger {
  922. color: #fff;
  923. background-color: #dc3545;
  924. border-color: #dc3545;
  925. }
  926. .btn-danger:hover {
  927. color: #fff;
  928. background-color: #c82333;
  929. border-color: #bd2130;
  930. }
  931. .btn-danger:focus, .btn-danger.focus {
  932. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  933. }
  934. .btn-danger.disabled, .btn-danger:disabled {
  935. color: #fff;
  936. background-color: #dc3545;
  937. border-color: #dc3545;
  938. }
  939. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  940. .show > .btn-danger.dropdown-toggle {
  941. color: #fff;
  942. background-color: #bd2130;
  943. border-color: #b21f2d;
  944. }
  945. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  946. .show > .btn-danger.dropdown-toggle:focus {
  947. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  948. }
  949. .btn-light {
  950. color: #212529;
  951. background-color: #f8f9fa;
  952. border-color: #f8f9fa;
  953. }
  954. .btn-light:hover {
  955. color: #212529;
  956. background-color: #e2e6ea;
  957. border-color: #dae0e5;
  958. }
  959. .btn-light:focus, .btn-light.focus {
  960. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  961. }
  962. .btn-light.disabled, .btn-light:disabled {
  963. color: #212529;
  964. background-color: #f8f9fa;
  965. border-color: #f8f9fa;
  966. }
  967. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  968. .show > .btn-light.dropdown-toggle {
  969. color: #212529;
  970. background-color: #dae0e5;
  971. border-color: #d3d9df;
  972. }
  973. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  974. .show > .btn-light.dropdown-toggle:focus {
  975. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  976. }
  977. .btn-dark {
  978. color: #fff;
  979. background-color: #343a40;
  980. border-color: #343a40;
  981. }
  982. .btn-dark:hover {
  983. color: #fff;
  984. background-color: #23272b;
  985. border-color: #1d2124;
  986. }
  987. .btn-dark:focus, .btn-dark.focus {
  988. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  989. }
  990. .btn-dark.disabled, .btn-dark:disabled {
  991. color: #fff;
  992. background-color: #343a40;
  993. border-color: #343a40;
  994. }
  995. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  996. .show > .btn-dark.dropdown-toggle {
  997. color: #fff;
  998. background-color: #1d2124;
  999. border-color: #171a1d;
  1000. }
  1001. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  1002. .show > .btn-dark.dropdown-toggle:focus {
  1003. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  1004. }
  1005. .btn-outline-primary {
  1006. color: #007bff;
  1007. border-color: #007bff;
  1008. }
  1009. .btn-outline-primary:hover {
  1010. color: #fff;
  1011. background-color: #007bff;
  1012. border-color: #007bff;
  1013. }
  1014. .btn-outline-primary:focus, .btn-outline-primary.focus {
  1015. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  1016. }
  1017. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  1018. color: #007bff;
  1019. background-color: transparent;
  1020. }
  1021. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  1022. .show > .btn-outline-primary.dropdown-toggle {
  1023. color: #fff;
  1024. background-color: #007bff;
  1025. border-color: #007bff;
  1026. }
  1027. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  1028. .show > .btn-outline-primary.dropdown-toggle:focus {
  1029. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  1030. }
  1031. .btn-outline-secondary {
  1032. color: #6c757d;
  1033. border-color: #6c757d;
  1034. }
  1035. .btn-outline-secondary:hover {
  1036. color: #fff;
  1037. background-color: #6c757d;
  1038. border-color: #6c757d;
  1039. }
  1040. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  1041. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  1042. }
  1043. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  1044. color: #6c757d;
  1045. background-color: transparent;
  1046. }
  1047. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  1048. .show > .btn-outline-secondary.dropdown-toggle {
  1049. color: #fff;
  1050. background-color: #6c757d;
  1051. border-color: #6c757d;
  1052. }
  1053. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  1054. .show > .btn-outline-secondary.dropdown-toggle:focus {
  1055. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  1056. }
  1057. .btn-outline-success {
  1058. color: #28a745;
  1059. border-color: #28a745;
  1060. }
  1061. .btn-outline-success:hover {
  1062. color: #fff;
  1063. background-color: #28a745;
  1064. border-color: #28a745;
  1065. }
  1066. .btn-outline-success:focus, .btn-outline-success.focus {
  1067. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  1068. }
  1069. .btn-outline-success.disabled, .btn-outline-success:disabled {
  1070. color: #28a745;
  1071. background-color: transparent;
  1072. }
  1073. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  1074. .show > .btn-outline-success.dropdown-toggle {
  1075. color: #fff;
  1076. background-color: #28a745;
  1077. border-color: #28a745;
  1078. }
  1079. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  1080. .show > .btn-outline-success.dropdown-toggle:focus {
  1081. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  1082. }
  1083. .btn-outline-info {
  1084. color: #17a2b8;
  1085. border-color: #17a2b8;
  1086. }
  1087. .btn-outline-info:hover {
  1088. color: #fff;
  1089. background-color: #17a2b8;
  1090. border-color: #17a2b8;
  1091. }
  1092. .btn-outline-info:focus, .btn-outline-info.focus {
  1093. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  1094. }
  1095. .btn-outline-info.disabled, .btn-outline-info:disabled {
  1096. color: #17a2b8;
  1097. background-color: transparent;
  1098. }
  1099. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  1100. .show > .btn-outline-info.dropdown-toggle {
  1101. color: #fff;
  1102. background-color: #17a2b8;
  1103. border-color: #17a2b8;
  1104. }
  1105. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  1106. .show > .btn-outline-info.dropdown-toggle:focus {
  1107. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  1108. }
  1109. .btn-outline-warning {
  1110. color: #ffc107;
  1111. border-color: #ffc107;
  1112. }
  1113. .btn-outline-warning:hover {
  1114. color: #212529;
  1115. background-color: #ffc107;
  1116. border-color: #ffc107;
  1117. }
  1118. .btn-outline-warning:focus, .btn-outline-warning.focus {
  1119. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  1120. }
  1121. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  1122. color: #ffc107;
  1123. background-color: transparent;
  1124. }
  1125. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  1126. .show > .btn-outline-warning.dropdown-toggle {
  1127. color: #212529;
  1128. background-color: #ffc107;
  1129. border-color: #ffc107;
  1130. }
  1131. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  1132. .show > .btn-outline-warning.dropdown-toggle:focus {
  1133. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  1134. }
  1135. .btn-outline-danger {
  1136. color: #dc3545;
  1137. border-color: #dc3545;
  1138. }
  1139. .btn-outline-danger:hover {
  1140. color: #fff;
  1141. background-color: #dc3545;
  1142. border-color: #dc3545;
  1143. }
  1144. .btn-outline-danger:focus, .btn-outline-danger.focus {
  1145. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  1146. }
  1147. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  1148. color: #dc3545;
  1149. background-color: transparent;
  1150. }
  1151. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  1152. .show > .btn-outline-danger.dropdown-toggle {
  1153. color: #fff;
  1154. background-color: #dc3545;
  1155. border-color: #dc3545;
  1156. }
  1157. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  1158. .show > .btn-outline-danger.dropdown-toggle:focus {
  1159. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  1160. }
  1161. .btn-outline-light {
  1162. color: #f8f9fa;
  1163. border-color: #f8f9fa;
  1164. }
  1165. .btn-outline-light:hover {
  1166. color: #212529;
  1167. background-color: #f8f9fa;
  1168. border-color: #f8f9fa;
  1169. }
  1170. .btn-outline-light:focus, .btn-outline-light.focus {
  1171. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  1172. }
  1173. .btn-outline-light.disabled, .btn-outline-light:disabled {
  1174. color: #f8f9fa;
  1175. background-color: transparent;
  1176. }
  1177. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  1178. .show > .btn-outline-light.dropdown-toggle {
  1179. color: #212529;
  1180. background-color: #f8f9fa;
  1181. border-color: #f8f9fa;
  1182. }
  1183. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  1184. .show > .btn-outline-light.dropdown-toggle:focus {
  1185. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  1186. }
  1187. .btn-outline-dark {
  1188. color: #343a40;
  1189. border-color: #343a40;
  1190. }
  1191. .btn-outline-dark:hover {
  1192. color: #fff;
  1193. background-color: #343a40;
  1194. border-color: #343a40;
  1195. }
  1196. .btn-outline-dark:focus, .btn-outline-dark.focus {
  1197. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  1198. }
  1199. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  1200. color: #343a40;
  1201. background-color: transparent;
  1202. }
  1203. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  1204. .show > .btn-outline-dark.dropdown-toggle {
  1205. color: #fff;
  1206. background-color: #343a40;
  1207. border-color: #343a40;
  1208. }
  1209. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  1210. .show > .btn-outline-dark.dropdown-toggle:focus {
  1211. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  1212. }
  1213. .btn-link {
  1214. font-weight: 400;
  1215. color: #007bff;
  1216. text-decoration: none;
  1217. }
  1218. .btn-link:hover {
  1219. color: #0056b3;
  1220. text-decoration: underline;
  1221. }
  1222. .btn-link:focus, .btn-link.focus {
  1223. text-decoration: underline;
  1224. box-shadow: none;
  1225. }
  1226. .btn-link:disabled, .btn-link.disabled {
  1227. color: #6c757d;
  1228. pointer-events: none;
  1229. }
  1230. .btn-lg, .btn-group-lg > .btn {
  1231. padding: 0.5rem 1rem;
  1232. font-size: 1.25rem;
  1233. line-height: 1.5;
  1234. border-radius: 0.3rem;
  1235. }
  1236. .btn-sm, .btn-group-sm > .btn {
  1237. padding: 0.25rem 0.5rem;
  1238. font-size: 0.875rem;
  1239. line-height: 1.5;
  1240. border-radius: 0.2rem;
  1241. }
  1242. .btn-block {
  1243. display: block;
  1244. width: 100%;
  1245. }
  1246. .btn-block + .btn-block {
  1247. margin-top: 0.5rem;
  1248. }
  1249. input[type="submit"].btn-block,
  1250. input[type="reset"].btn-block,
  1251. input[type="button"].btn-block {
  1252. width: 100%;
  1253. }
  1254. button {
  1255. border-radius: 0;
  1256. }
  1257. button:focus {
  1258. outline: 1px dotted;
  1259. outline: 5px auto -webkit-focus-ring-color;
  1260. }