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

style.css 30KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520
  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. .seperator {
  747. border-left:1px solid #333;
  748. margin-left:5px;
  749. margin-right:5px;
  750. }
  751. .socialicons img {
  752. width:28px;
  753. height:28px;
  754. margin-right:10px;
  755. }
  756. .border {
  757. border-bottom:2px solid #2e2e2e;
  758. }
  759. .pull_left { float:left; }
  760. .pull_right { float:right; }
  761. .clear { clear:both; }
  762. /* BTN styles from bootstrap */
  763. .btn:hover {
  764. color: #212529;
  765. text-decoration: none;
  766. }
  767. .btn:focus, .btn.focus {
  768. outline: 0;
  769. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  770. }
  771. .btn.disabled, .btn:disabled {
  772. opacity: 0.65;
  773. }
  774. a.btn.disabled,
  775. fieldset:disabled a.btn {
  776. pointer-events: none;
  777. }
  778. .btn-primary {
  779. color: #fff;
  780. background-color: #007bff;
  781. border-color: #007bff;
  782. }
  783. .btn-primary:hover {
  784. color: #fff;
  785. background-color: #0069d9;
  786. border-color: #0062cc;
  787. }
  788. .btn-primary:focus, .btn-primary.focus {
  789. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  790. }
  791. .btn-primary.disabled, .btn-primary:disabled {
  792. color: #fff;
  793. background-color: #007bff;
  794. border-color: #007bff;
  795. }
  796. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  797. .show > .btn-primary.dropdown-toggle {
  798. color: #fff;
  799. background-color: #0062cc;
  800. border-color: #005cbf;
  801. }
  802. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  803. .show > .btn-primary.dropdown-toggle:focus {
  804. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  805. }
  806. .btn-secondary {
  807. color: #fff;
  808. background-color: #6c757d;
  809. border-color: #6c757d;
  810. }
  811. .btn-secondary:hover {
  812. color: #fff;
  813. background-color: #5a6268;
  814. border-color: #545b62;
  815. }
  816. .btn-secondary:focus, .btn-secondary.focus {
  817. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  818. }
  819. .btn-secondary.disabled, .btn-secondary:disabled {
  820. color: #fff;
  821. background-color: #6c757d;
  822. border-color: #6c757d;
  823. }
  824. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  825. .show > .btn-secondary.dropdown-toggle {
  826. color: #fff;
  827. background-color: #545b62;
  828. border-color: #4e555b;
  829. }
  830. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  831. .show > .btn-secondary.dropdown-toggle:focus {
  832. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  833. }
  834. .btn-success {
  835. color: #fff;
  836. background-color: #28a745;
  837. border-color: #28a745;
  838. }
  839. .btn-success:hover {
  840. color: #fff;
  841. background-color: #218838;
  842. border-color: #1e7e34;
  843. }
  844. .btn-success:focus, .btn-success.focus {
  845. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  846. }
  847. .btn-success.disabled, .btn-success:disabled {
  848. color: #fff;
  849. background-color: #28a745;
  850. border-color: #28a745;
  851. }
  852. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  853. .show > .btn-success.dropdown-toggle {
  854. color: #fff;
  855. background-color: #1e7e34;
  856. border-color: #1c7430;
  857. }
  858. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  859. .show > .btn-success.dropdown-toggle:focus {
  860. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  861. }
  862. .btn-info {
  863. color: #fff;
  864. background-color: #17a2b8;
  865. border-color: #17a2b8;
  866. }
  867. .btn-info:hover {
  868. color: #fff;
  869. background-color: #138496;
  870. border-color: #117a8b;
  871. }
  872. .btn-info:focus, .btn-info.focus {
  873. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  874. }
  875. .btn-info.disabled, .btn-info:disabled {
  876. color: #fff;
  877. background-color: #17a2b8;
  878. border-color: #17a2b8;
  879. }
  880. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  881. .show > .btn-info.dropdown-toggle {
  882. color: #fff;
  883. background-color: #117a8b;
  884. border-color: #10707f;
  885. }
  886. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  887. .show > .btn-info.dropdown-toggle:focus {
  888. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  889. }
  890. .btn-warning {
  891. color: #212529;
  892. background-color: #ffc107;
  893. border-color: #ffc107;
  894. }
  895. .btn-warning:hover {
  896. color: #212529;
  897. background-color: #e0a800;
  898. border-color: #d39e00;
  899. }
  900. .btn-warning:focus, .btn-warning.focus {
  901. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  902. }
  903. .btn-warning.disabled, .btn-warning:disabled {
  904. color: #212529;
  905. background-color: #ffc107;
  906. border-color: #ffc107;
  907. }
  908. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  909. .show > .btn-warning.dropdown-toggle {
  910. color: #212529;
  911. background-color: #d39e00;
  912. border-color: #c69500;
  913. }
  914. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  915. .show > .btn-warning.dropdown-toggle:focus {
  916. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  917. }
  918. .btn-danger {
  919. color: #fff;
  920. background-color: #dc3545;
  921. border-color: #dc3545;
  922. }
  923. .btn-danger:hover {
  924. color: #fff;
  925. background-color: #c82333;
  926. border-color: #bd2130;
  927. }
  928. .btn-danger:focus, .btn-danger.focus {
  929. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  930. }
  931. .btn-danger.disabled, .btn-danger:disabled {
  932. color: #fff;
  933. background-color: #dc3545;
  934. border-color: #dc3545;
  935. }
  936. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  937. .show > .btn-danger.dropdown-toggle {
  938. color: #fff;
  939. background-color: #bd2130;
  940. border-color: #b21f2d;
  941. }
  942. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  943. .show > .btn-danger.dropdown-toggle:focus {
  944. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  945. }
  946. .btn-light {
  947. color: #212529;
  948. background-color: #f8f9fa;
  949. border-color: #f8f9fa;
  950. }
  951. .btn-light:hover {
  952. color: #212529;
  953. background-color: #e2e6ea;
  954. border-color: #dae0e5;
  955. }
  956. .btn-light:focus, .btn-light.focus {
  957. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  958. }
  959. .btn-light.disabled, .btn-light:disabled {
  960. color: #212529;
  961. background-color: #f8f9fa;
  962. border-color: #f8f9fa;
  963. }
  964. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  965. .show > .btn-light.dropdown-toggle {
  966. color: #212529;
  967. background-color: #dae0e5;
  968. border-color: #d3d9df;
  969. }
  970. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  971. .show > .btn-light.dropdown-toggle:focus {
  972. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  973. }
  974. .btn-dark {
  975. color: #fff;
  976. background-color: #343a40;
  977. border-color: #343a40;
  978. }
  979. .btn-dark:hover {
  980. color: #fff;
  981. background-color: #23272b;
  982. border-color: #1d2124;
  983. }
  984. .btn-dark:focus, .btn-dark.focus {
  985. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  986. }
  987. .btn-dark.disabled, .btn-dark:disabled {
  988. color: #fff;
  989. background-color: #343a40;
  990. border-color: #343a40;
  991. }
  992. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  993. .show > .btn-dark.dropdown-toggle {
  994. color: #fff;
  995. background-color: #1d2124;
  996. border-color: #171a1d;
  997. }
  998. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  999. .show > .btn-dark.dropdown-toggle:focus {
  1000. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  1001. }
  1002. .btn-outline-primary {
  1003. color: #007bff;
  1004. border-color: #007bff;
  1005. }
  1006. .btn-outline-primary:hover {
  1007. color: #fff;
  1008. background-color: #007bff;
  1009. border-color: #007bff;
  1010. }
  1011. .btn-outline-primary:focus, .btn-outline-primary.focus {
  1012. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  1013. }
  1014. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  1015. color: #007bff;
  1016. background-color: transparent;
  1017. }
  1018. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  1019. .show > .btn-outline-primary.dropdown-toggle {
  1020. color: #fff;
  1021. background-color: #007bff;
  1022. border-color: #007bff;
  1023. }
  1024. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  1025. .show > .btn-outline-primary.dropdown-toggle:focus {
  1026. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  1027. }
  1028. .btn-outline-secondary {
  1029. color: #6c757d;
  1030. border-color: #6c757d;
  1031. }
  1032. .btn-outline-secondary:hover {
  1033. color: #fff;
  1034. background-color: #6c757d;
  1035. border-color: #6c757d;
  1036. }
  1037. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  1038. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  1039. }
  1040. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  1041. color: #6c757d;
  1042. background-color: transparent;
  1043. }
  1044. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  1045. .show > .btn-outline-secondary.dropdown-toggle {
  1046. color: #fff;
  1047. background-color: #6c757d;
  1048. border-color: #6c757d;
  1049. }
  1050. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  1051. .show > .btn-outline-secondary.dropdown-toggle:focus {
  1052. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  1053. }
  1054. .btn-outline-success {
  1055. color: #28a745;
  1056. border-color: #28a745;
  1057. }
  1058. .btn-outline-success:hover {
  1059. color: #fff;
  1060. background-color: #28a745;
  1061. border-color: #28a745;
  1062. }
  1063. .btn-outline-success:focus, .btn-outline-success.focus {
  1064. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  1065. }
  1066. .btn-outline-success.disabled, .btn-outline-success:disabled {
  1067. color: #28a745;
  1068. background-color: transparent;
  1069. }
  1070. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  1071. .show > .btn-outline-success.dropdown-toggle {
  1072. color: #fff;
  1073. background-color: #28a745;
  1074. border-color: #28a745;
  1075. }
  1076. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  1077. .show > .btn-outline-success.dropdown-toggle:focus {
  1078. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  1079. }
  1080. .btn-outline-info {
  1081. color: #17a2b8;
  1082. border-color: #17a2b8;
  1083. }
  1084. .btn-outline-info:hover {
  1085. color: #fff;
  1086. background-color: #17a2b8;
  1087. border-color: #17a2b8;
  1088. }
  1089. .btn-outline-info:focus, .btn-outline-info.focus {
  1090. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  1091. }
  1092. .btn-outline-info.disabled, .btn-outline-info:disabled {
  1093. color: #17a2b8;
  1094. background-color: transparent;
  1095. }
  1096. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  1097. .show > .btn-outline-info.dropdown-toggle {
  1098. color: #fff;
  1099. background-color: #17a2b8;
  1100. border-color: #17a2b8;
  1101. }
  1102. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  1103. .show > .btn-outline-info.dropdown-toggle:focus {
  1104. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  1105. }
  1106. .btn-outline-warning {
  1107. color: #ffc107;
  1108. border-color: #ffc107;
  1109. }
  1110. .btn-outline-warning:hover {
  1111. color: #212529;
  1112. background-color: #ffc107;
  1113. border-color: #ffc107;
  1114. }
  1115. .btn-outline-warning:focus, .btn-outline-warning.focus {
  1116. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  1117. }
  1118. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  1119. color: #ffc107;
  1120. background-color: transparent;
  1121. }
  1122. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  1123. .show > .btn-outline-warning.dropdown-toggle {
  1124. color: #212529;
  1125. background-color: #ffc107;
  1126. border-color: #ffc107;
  1127. }
  1128. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  1129. .show > .btn-outline-warning.dropdown-toggle:focus {
  1130. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  1131. }
  1132. .btn-outline-danger {
  1133. color: #dc3545;
  1134. border-color: #dc3545;
  1135. }
  1136. .btn-outline-danger:hover {
  1137. color: #fff;
  1138. background-color: #dc3545;
  1139. border-color: #dc3545;
  1140. }
  1141. .btn-outline-danger:focus, .btn-outline-danger.focus {
  1142. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  1143. }
  1144. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  1145. color: #dc3545;
  1146. background-color: transparent;
  1147. }
  1148. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  1149. .show > .btn-outline-danger.dropdown-toggle {
  1150. color: #fff;
  1151. background-color: #dc3545;
  1152. border-color: #dc3545;
  1153. }
  1154. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  1155. .show > .btn-outline-danger.dropdown-toggle:focus {
  1156. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  1157. }
  1158. .btn-outline-light {
  1159. color: #f8f9fa;
  1160. border-color: #f8f9fa;
  1161. }
  1162. .btn-outline-light:hover {
  1163. color: #212529;
  1164. background-color: #f8f9fa;
  1165. border-color: #f8f9fa;
  1166. }
  1167. .btn-outline-light:focus, .btn-outline-light.focus {
  1168. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  1169. }
  1170. .btn-outline-light.disabled, .btn-outline-light:disabled {
  1171. color: #f8f9fa;
  1172. background-color: transparent;
  1173. }
  1174. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  1175. .show > .btn-outline-light.dropdown-toggle {
  1176. color: #212529;
  1177. background-color: #f8f9fa;
  1178. border-color: #f8f9fa;
  1179. }
  1180. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  1181. .show > .btn-outline-light.dropdown-toggle:focus {
  1182. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  1183. }
  1184. .btn-outline-dark {
  1185. color: #343a40;
  1186. border-color: #343a40;
  1187. }
  1188. .btn-outline-dark:hover {
  1189. color: #fff;
  1190. background-color: #343a40;
  1191. border-color: #343a40;
  1192. }
  1193. .btn-outline-dark:focus, .btn-outline-dark.focus {
  1194. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  1195. }
  1196. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  1197. color: #343a40;
  1198. background-color: transparent;
  1199. }
  1200. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  1201. .show > .btn-outline-dark.dropdown-toggle {
  1202. color: #fff;
  1203. background-color: #343a40;
  1204. border-color: #343a40;
  1205. }
  1206. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  1207. .show > .btn-outline-dark.dropdown-toggle:focus {
  1208. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  1209. }
  1210. .btn-link {
  1211. font-weight: 400;
  1212. color: #007bff;
  1213. text-decoration: none;
  1214. }
  1215. .btn-link:hover {
  1216. color: #0056b3;
  1217. text-decoration: underline;
  1218. }
  1219. .btn-link:focus, .btn-link.focus {
  1220. text-decoration: underline;
  1221. box-shadow: none;
  1222. }
  1223. .btn-link:disabled, .btn-link.disabled {
  1224. color: #6c757d;
  1225. pointer-events: none;
  1226. }
  1227. .btn-lg, .btn-group-lg > .btn {
  1228. padding: 0.5rem 1rem;
  1229. font-size: 1.25rem;
  1230. line-height: 1.5;
  1231. border-radius: 0.3rem;
  1232. }
  1233. .btn-sm, .btn-group-sm > .btn {
  1234. padding: 0.25rem 0.5rem;
  1235. font-size: 0.875rem;
  1236. line-height: 1.5;
  1237. border-radius: 0.2rem;
  1238. }
  1239. .btn-block {
  1240. display: block;
  1241. width: 100%;
  1242. }
  1243. .btn-block + .btn-block {
  1244. margin-top: 0.5rem;
  1245. }
  1246. input[type="submit"].btn-block,
  1247. input[type="reset"].btn-block,
  1248. input[type="button"].btn-block {
  1249. width: 100%;
  1250. }
  1251. button {
  1252. border-radius: 0;
  1253. }
  1254. button:focus {
  1255. outline: 1px dotted;
  1256. outline: 5px auto -webkit-focus-ring-color;
  1257. }