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

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