"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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