"OdenseTrack" is a school assignment/project from AspIT https://aspit.dfine.net/odensetrack
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

style.css 32KB

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