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

style.css 29KB

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