"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 29KB

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