responsive.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. /* media queries responsive */
  2. /* Typical screen resolutions (only width matters) are:
  3. 320*
  4. 480*
  5. 640*
  6. 720* (samsung S3)
  7. 800*
  8. 1024*
  9. 1152
  10. 1280*
  11. 1360
  12. 1400
  13. 1440*
  14. 1600*
  15. 1680
  16. 1920*
  17. +more*
  18. The more frequent ones have been marked with *
  19. */
  20. /* Phone */
  21. @media (max-width: 320px) {
  22. header #header_center, header #header_right, header #header_left {
  23. display:none;
  24. }
  25. .navbar {
  26. margin-top: 0em;
  27. }
  28. .navbar .brand {
  29. font-size: 14px;
  30. }
  31. #main_content .span3 #login_block {
  32. width: 160px;
  33. float: left;
  34. }
  35. #main_content .span3 #help_block {
  36. width: 60px;
  37. float: right;
  38. margin-left: 10px;
  39. margin-right: 10px;
  40. }
  41. /* No view as link*/
  42. #view_as_link {
  43. display:none;
  44. }
  45. /* Smaller brand */
  46. .navbar .brand {
  47. font-size: 14px;
  48. }
  49. /* In order to avoid clicking in the main title instead of the expand button */
  50. .subnav .navbar-inner .in{
  51. margin-top: 45px;
  52. }
  53. #main_content .span3 #login_block {
  54. width: 180px;
  55. }
  56. #main_content .span3 #help_block {
  57. width: 100px;
  58. }
  59. /* only for the course tools */
  60. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  61. float: left;
  62. margin-left: 20px;
  63. }
  64. /* Course- home - Show 2 icons instead of one */
  65. .course-tool {
  66. float: left;
  67. height: 110px;
  68. width: 110px;
  69. }
  70. .course-tool h4 {
  71. font-size: 15px;
  72. }
  73. /* in admin, reduce block height but increase width (from 47%) as there
  74. will be only one for the whole width */
  75. #settings .span6 {
  76. min-height: none;
  77. width: 95%;
  78. }
  79. .section-mycourses .menu-column, .section-mycampus .menu-column {
  80. width: 95%;
  81. }
  82. .section-mycampus .menu-column #login_block {
  83. width: 95%;
  84. }
  85. .section-mycourses .menu-column #user_image_block,
  86. .section-mycourses .menu-column #profile_block,
  87. .section-mycourses .menu-column #skill_block,
  88. .section-mycourses .menu-column #search_block,
  89. .section-mycourses .menu-column #classes_block,
  90. .section-mycourses .menu-column #reservation_block,
  91. .section-mycourses .menu-column #skill_block,
  92. .section-mycampus .menu-column #help_block,
  93. .section-mycourses .menu-column #notice_block {
  94. display: none;
  95. }
  96. .section-mycampus #homepage {
  97. width: 260px;
  98. }
  99. .section-mycampus #hot_courses {
  100. width: 260px;
  101. }
  102. .section-mycourses #top_main_content {
  103. margin-right: 15px;
  104. }
  105. .section-mycourses #main_content {
  106. margin-right: 15px;
  107. width: 260px;
  108. }
  109. .section-mycourses .course-box .course-box-actions {
  110. display: none;
  111. }
  112. .section-mycampus .hot-course-box, .section-mycourses .course-box {
  113. width: 95%;
  114. }
  115. footer {
  116. margin-top: 0px;
  117. }
  118. .course-tool {
  119. width: 160px;
  120. }
  121. }
  122. @media (min-width: 321px) and (max-width: 480px) {
  123. body {
  124. padding-left: 0;
  125. padding-right: 0;
  126. }
  127. header #header_left {
  128. display: block;
  129. }
  130. .page-section{
  131. padding-left: 1em;
  132. padding-right: 1em;
  133. }
  134. header #header_center, header #header_right{
  135. display: none;
  136. visibility: hidden;
  137. }
  138. #header_right #notifications {
  139. padding:0;
  140. }
  141. /* THEMATIC COURSE */
  142. .score-thematic .score {
  143. text-align: left;
  144. width: 90px;
  145. float: left;
  146. padding-left: 5px;
  147. }
  148. .score-thematic .name-student {
  149. display: none;
  150. }
  151. .score-thematic .span8 {
  152. width: 320px;
  153. }
  154. .accordion-heading .title-accordion{
  155. background: none;
  156. }
  157. .accordion-heading .accordion-toggle{
  158. margin-right: 0;
  159. }
  160. .accordion-inner .span4 .row-fluid .span4 {
  161. width: 105px;
  162. }
  163. .navbar .nav > li > a {
  164. float: none;
  165. line-height: 20px;
  166. padding-bottom: 7px;
  167. padding-right: 10px;
  168. padding-top: 7px;
  169. color: #FFFFFF;
  170. }
  171. /* END THEMATIC COURSE */
  172. #top_main_content .span6 {
  173. width: 100%;
  174. }
  175. .well.form-inline {
  176. clear: both;
  177. display: inline-block;
  178. margin-top: 22px;
  179. width: 100%;
  180. }
  181. .nav.nav-pills {
  182. background:#E9E9E9;
  183. }
  184. .new_actions .nav-tabs > li > a, .new_actions .nav-pills > li > a {
  185. border: none;
  186. padding-right: 7px;
  187. padding-left: 7px;
  188. }
  189. legend {
  190. margin-bottom: 10px;
  191. color:#0191C7;
  192. border-bottom: 1px solid #0191C7;
  193. }
  194. #login_block #formLogin, #login_block #lang_form, #notice_block .homepage_notice {
  195. color: #777777;
  196. font-size: 14px;
  197. }
  198. #main_content .course-box .row .span7 .row .span6 h3 {
  199. font-size: 14px;
  200. font-weight: normal;
  201. width: 35%;
  202. line-height: 19px;
  203. }
  204. footer #footer_left, footer #footer_center{
  205. display: none;
  206. }
  207. footer #footer_right {
  208. display: block;
  209. float: left;
  210. text-align: center;
  211. width: 100%;
  212. }
  213. .welcome-home-top-temp img{
  214. height: 100%;
  215. max-width: 100%;
  216. }
  217. #top_main_content .menu-column #reservation_block, #top_main_content .menu-column #notice_block, #top_main_content .menu-column #help_block {
  218. clear: both;
  219. display: block;
  220. width: auto;
  221. }
  222. #profile_block .nav-list li, #course_block .nav-list li {
  223. padding-bottom: 10px;
  224. padding-top: 10px;
  225. }
  226. .well_border .row .span2 .thumbnail {
  227. background-color: #FFFFFF;
  228. background-image: none;
  229. display: none;
  230. visibility: hidden;
  231. }
  232. .navbar {
  233. margin-top: 0em;
  234. }
  235. header{
  236. margin-top: 15px;
  237. }
  238. .subnav .dropdown-menu li a {
  239. color: #FFFFFF;
  240. font-weight: normal;
  241. }
  242. .subnav .navbar-inner .in{
  243. margin-top: 45px;
  244. }
  245. .section-mycampus #hot_courses {
  246. display: none;
  247. visibility: hidden;
  248. }
  249. /* No chat in mobiles */
  250. #chatmain {
  251. display:none;
  252. }
  253. #top_main_content .menu-column #profile_block{
  254. float: none;
  255. clear: both;
  256. width: 250px;
  257. margin-left: 10px;
  258. background: none;
  259. border:none;
  260. box-shadow: none;
  261. }
  262. #top_main_content .menu-column #course_block{
  263. float: none;
  264. clear: both;
  265. width: 250px;
  266. margin-left: 10px;
  267. background: none;
  268. border:none;
  269. box-shadow: none;
  270. }
  271. /* No topbar */
  272. #topbar {
  273. display:none;
  274. }
  275. /* No view as link*/
  276. #view_as_link {
  277. display:none;
  278. }
  279. /* Brand fix */
  280. .navbar .brand {
  281. font-size: 14px;
  282. }
  283. .subnav .dropdown-toggle {
  284. display:none;
  285. }
  286. .subnav .nav > li > a, .navbar .dropdown-menu a {
  287. color: white;
  288. }
  289. /* Footer fixes */
  290. footer {
  291. border-top: 1px solid #CCCCCC;
  292. background-color: #fff;
  293. background-image: none;
  294. color: #666;
  295. }
  296. footer #footer_left a, footer #footer_center a, footer #footer_right a {
  297. color : #F1D40D;
  298. }
  299. #footer_left , #footer_right #admin_name, #footer_right #software_name {
  300. text-align: center !important;
  301. }
  302. footer .container .row {
  303. padding-top: 15px;
  304. }
  305. /* No resize font */
  306. .resize_font {
  307. display:none;
  308. }
  309. .fc-header {
  310. margin-top: 36px;
  311. }
  312. .fc-header-title h2 {
  313. font-size: 19px;
  314. font-weight: normal;
  315. left: 20px;
  316. text-transform: uppercase;
  317. top: 179px;
  318. }
  319. h3 {
  320. font-size: 18px;
  321. }
  322. h4 {
  323. font-size: 16px;
  324. }
  325. /* No notifications */
  326. .notification-panel {
  327. display:none;
  328. }
  329. /* only for the course tools */
  330. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  331. float: left;
  332. margin-left: 0;
  333. }
  334. /* Course- home - Show 2 icons instead of one */
  335. .course-tool {
  336. float: left;
  337. height: 150px;
  338. width: 50%;
  339. }
  340. .course-tool h4 {
  341. font-size: 14px;
  342. }
  343. .subbav .nav > li > a:hover,
  344. .subbav .dropdown-menu a:hover {
  345. background-color: #555;
  346. }
  347. #main_content .span3 #login_block {
  348. width: 280px;
  349. float: left;
  350. }
  351. #main_content .span3 #help_block {
  352. width: 100px;
  353. float: right;
  354. margin-left: 10px;
  355. margin-right: 10px;
  356. }
  357. /* in admin, reduce block height but increase width (from 47%) as there
  358. will be only one for the whole width */
  359. #settings .span6 {
  360. min-height: none;
  361. width: 95%;
  362. }
  363. .section-mycourses .menu-column, .section-mycampus .menu-column {
  364. width: 95%;
  365. }
  366. .section-mycampus .menu-column #login_block {
  367. width: 95%;
  368. }
  369. .section-mycourses .menu-column #user_image_block,
  370. .section-mycourses .menu-column #profile_block,
  371. .section-mycourses .menu-column #skill_block,
  372. .section-mycourses .menu-column #search_block,
  373. .section-mycourses .menu-column #classes_block,
  374. .section-mycourses .menu-column #reservation_block,
  375. .section-mycourses .menu-column #skill_block,
  376. .section-mycampus .menu-column #help_block,
  377. .section-mycourses .menu-column #notice_block {
  378. display: none;
  379. }
  380. .section-mycampus #homepage {
  381. width: auto;
  382. }
  383. .section-mycampus #hot_courses {
  384. width: 400px;
  385. }
  386. .section-mycourses #top_main_content {
  387. margin-right: 0px;
  388. }
  389. .section-mycourses #main_content {
  390. margin-right: 15px;
  391. width: 100%
  392. ;
  393. }
  394. .section-mycourses .course-box .course-box-actions {
  395. display: none;
  396. }
  397. .section-mycampus .hot-course-box, .section-mycourses .course-box {
  398. width: 95%;
  399. }
  400. footer {
  401. margin-top: 0px;
  402. }
  403. }
  404. @media (min-width: 481px) and (max-width: 800px) {
  405. /* No topbar */
  406. #topbar {
  407. display:none;
  408. }
  409. .subnav .dropdown-menu li a {
  410. color: #FFFFFF;
  411. font-weight: normal;
  412. }
  413. header{
  414. margin-top: 15px;
  415. }
  416. #wrapper{
  417. padding-left: 0;
  418. padding-right: 0;
  419. }
  420. #top_main_content .menu-column {
  421. width: 97%;
  422. }
  423. #top_main_content .menu-column .block_user_info{
  424. width: 445px;
  425. clear: both;
  426. float: left;
  427. }
  428. #top_main_content .menu-column .block_tools_info{
  429. width: 225px;
  430. float: left;
  431. }
  432. #top_main_content .menu-column .block_tools_info #help_block{
  433. display: none;
  434. visibility: hidden;
  435. }
  436. #top_main_content .menu-column #user_image_block{
  437. float: left;
  438. width: 100px;
  439. background: none;
  440. border:none;
  441. }
  442. #top_main_content .menu-column #course_block{
  443. float: left;
  444. background: none;
  445. border:none;
  446. box-shadow: none;
  447. }
  448. #top_main_content .menu-column #user_image_block img{
  449. border: 3px solid #FFFFFF;
  450. -webkit-box-shadow: 1px 0px 5px 0px rgba(50, 50, 50, 0.71);
  451. -moz-box-shadow: 1px 0px 5px 0px rgba(50, 50, 50, 0.71);
  452. box-shadow: 1px 0px 5px 0px rgba(50, 50, 50, 0.71);
  453. }
  454. #top_main_content .menu-column #profile_block{
  455. float: left;
  456. width: 250px;
  457. margin-left: 10px;
  458. background: none;
  459. border:none;
  460. box-shadow: none;
  461. }
  462. input.span2, textarea.span2, .uneditable-input.span2 {
  463. height: 45px;
  464. width: 97%;
  465. }
  466. #top_main_content .menu-column #reservation_block, #top_main_content .menu-column #notice_block, #top_main_content .menu-column #help_block {
  467. clear: both;
  468. display: block;
  469. width: auto;
  470. }
  471. #top_main_content .menu-column .well{
  472. padding: 15px;
  473. }
  474. .nav-list > li > a {
  475. padding-bottom: 10px;
  476. padding-left: 15px;
  477. padding-right: 15px;
  478. padding-top: 10px;
  479. font-size: 16px;
  480. }
  481. .bx-prev,.bx-next{
  482. display: none;
  483. }
  484. .pagerslide h2 {
  485. display: none;
  486. visibility: hidden;
  487. }
  488. #login_block #formLogin, #login_block #lang_form, #notice_block .homepage_notice {
  489. color: #666666;
  490. font-size: 14px;
  491. padding-bottom: 3px;
  492. padding-left: 15px;
  493. padding-right: 15px;
  494. padding-top: 3px;
  495. }
  496. /* only for the course tools */
  497. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  498. float: left;
  499. }
  500. .course-tool {
  501. width: 160px;
  502. }
  503. .course-tool h4 {
  504. font-size: 14px;
  505. }
  506. .subnav .dropdown-toggle {
  507. display:none;
  508. }
  509. header #header_center, header #header_right {
  510. display:none;
  511. }
  512. #footer_right #admin_name, #footer_right #software_name {
  513. text-align: center !important;
  514. }
  515. .subnav .nav > li > a, .navbar .dropdown-menu a {
  516. color: white;
  517. }
  518. footer .container .row {
  519. padding-top: 15px;
  520. }
  521. .notification-panel {
  522. display:none;
  523. }
  524. /* Remove any padding from the body */
  525. body {
  526. padding: 0;
  527. }
  528. #topbar_push {
  529. height: 0px;
  530. }
  531. /* Subnav */
  532. .subnav {
  533. border:none;
  534. position: static;
  535. top: auto;
  536. z-index: auto;
  537. width: 100%;
  538. height: auto;
  539. -webkit-box-shadow: none;
  540. -moz-box-shadow: none;
  541. box-shadow: none;
  542. }
  543. .subnav .nav > li {
  544. float: none;
  545. }
  546. .subnav .nav > li > a {
  547. border: 0;
  548. }
  549. .subnav .nav > li + li > a {
  550. border-top: none;
  551. }
  552. .subnav .nav > li:first-child > a,
  553. .subnav .nav > li:first-child > a:hover {
  554. border-radius: none;
  555. }
  556. .subnav .navbar-inner li a:hover {
  557. color: #fff;
  558. }
  559. /* .new_actions */
  560. .new_actions {
  561. border:1px solid #fff;
  562. position: static;
  563. top: auto;
  564. z-index: auto;
  565. width: 100%;
  566. height: auto;
  567. -webkit-box-shadow: none;
  568. -moz-box-shadow: none;
  569. box-shadow: none;
  570. text-align: center;
  571. }
  572. .new_actions .nav > li {
  573. float: left;
  574. }
  575. .well.form-inline {
  576. display: inline-block;
  577. margin-top: 15px;
  578. width: 100%;
  579. }
  580. .new_actions .nav > li > a {
  581. border: 0;
  582. }
  583. .new_actions .nav > li + li > a {
  584. border-top: 1px solid #e5e5e5;
  585. }
  586. .new_actions .nav > li:first-child > a,
  587. .new_actions .nav > li:first-child > a:hover {
  588. -webkit-border-radius: 4px 4px 0 0;
  589. -moz-border-radius: 4px 4px 0 0;
  590. border-radius: 4px 4px 0 0;
  591. }
  592. /* Some fixes for w~720px */
  593. .section-mycampus #top_main_content .content-column {
  594. float: left;
  595. width: 720px;
  596. }
  597. .section-mycampus #homepage {
  598. float: left;
  599. width: 720px;
  600. }
  601. .section-mycampus #hot_courses {
  602. float: left;
  603. width: 660px;
  604. }
  605. .section-mycourses .course-box .course-box-actions {
  606. display: none;
  607. }
  608. .section-mycampus .hot-course-box, .section-mycourses .course-box {
  609. width: 95%;
  610. }
  611. #top_main_content .span9 {
  612. float: left;
  613. width: 720px;
  614. }
  615. #top_main_content .span3 {
  616. clear: both;
  617. width: 97%;
  618. }
  619. /* Footer fixes */
  620. footer {
  621. border-top: 1px solid #CCCCCC;
  622. background-color: #fff;
  623. background-image: none;
  624. color: #666;
  625. }
  626. footer #footer_left a, footer #footer_center a, footer #footer_right a {
  627. color : #F1D40D;
  628. }
  629. #footer_left , #footer_right #admin_name, #footer_right #software_name {
  630. text-align: center !important;
  631. /*width: 600px;*/
  632. clear: both;
  633. }
  634. footer .container .row {
  635. padding-top: 15px;
  636. }
  637. .social-network-menu .social-background-content .thumbnail{
  638. border:none;
  639. box-shadow: none;
  640. }
  641. }
  642. @media (max-width: 600px) {
  643. #top_main_content .span3 {
  644. clear: both;
  645. width: 100%;
  646. }
  647. #top_main_content .menu-column #user_image_block {
  648. display: none;
  649. visibility: hidden;
  650. }
  651. #top_main_content .menu-column #reservation_block, #top_main_content .menu-column #notice_block, #top_main_content .menu-column #help_block {
  652. /*width: 94%;*/
  653. }
  654. footer {
  655. padding-top: 2em;
  656. padding-bottom: 2em;
  657. }
  658. #top_main_content .span9 {
  659. width: 100%;
  660. clear: both;
  661. }
  662. .section-mycampus #hot_courses .page-header {
  663. width: 565px;
  664. }
  665. /*.course-tool {
  666. width: 190px;
  667. }*/
  668. .well_border .row .span2 .thumbnail {
  669. background-color: #FFFFFF;
  670. background-image: none;
  671. float: left;
  672. margin-right: 10px;
  673. border: none;
  674. box-shadow: none;
  675. }
  676. #top_main_content .menu-column .block_user_info {
  677. width: 280px;
  678. }
  679. .section-mycampus .hot-course-box, .section-mycourses .course-box {
  680. width: auto;
  681. }
  682. .course-box-thumbnail-box{
  683. float: left;
  684. }
  685. #announcements{
  686. clear: both;
  687. }
  688. #settings .span6 {
  689. min-height: 260px;
  690. width: 100%;
  691. }
  692. #settings .form-search .span3 {
  693. float: left;
  694. width: 65%;
  695. height: 34px;
  696. margin-right: 5px;
  697. }
  698. #settings .row .span6 .well_border ul li{
  699. font-size: 13px;
  700. padding-top: 3px;
  701. padding-bottom: 3px;
  702. line-height: 16px;
  703. }
  704. #course_tools .course-title-tools h3 {
  705. color: #0191C7;
  706. background:none;
  707. }
  708. .page-header {
  709. display: none;
  710. }
  711. #course_category,#skill_block,.user_notification{
  712. display: none;
  713. visibility: hidden;
  714. }
  715. #course_tools .row .home-course-intro{
  716. width: 100%;
  717. }
  718. }
  719. @media (min-width: 801px) and (max-width: 979px) {
  720. /* No topbar */
  721. #topbar {
  722. display:none;
  723. }
  724. header{
  725. margin-top: 15px;
  726. }
  727. #homepage .row .span9{
  728. width: 610px;
  729. }
  730. .subnav .dropdown-menu li a {
  731. color: #FFFFFF;
  732. font-weight: normal;
  733. }
  734. /* fixes tabs */
  735. .subnav .nav-tabs > li > a, .subnav .nav-pills > li > a {
  736. padding-left: 6px;
  737. padding-right: 6px;
  738. }
  739. .subnav .dropdown-toggle {
  740. display:none;
  741. }
  742. .subnav .nav > li > a, .navbar .dropdown-menu a {
  743. color: #ccc;
  744. }
  745. .subnav .nav > li > a:hover,
  746. .subnav .dropdown-menu a:hover {
  747. }
  748. .course-tool {
  749. width: 220px;
  750. }
  751. }
  752. @media (max-width: 979px) {
  753. /* Remove any padding from the body */
  754. body {
  755. padding-top: 0;
  756. }
  757. #topbar_push {
  758. height: 0px;
  759. }
  760. }
  761. @media (min-width: 980px) and (max-width: 1200px) {
  762. /* fixes tabs */
  763. .subnav .nav-tabs > li > a, .subnav .nav-pills > li > a {
  764. padding-left: 6px;
  765. padding-right: 6px;
  766. }
  767. /* only for the course tools */
  768. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  769. float: left;
  770. }
  771. .course-tool {
  772. width: 280px;
  773. }
  774. .section-social-network .social-network-menu {
  775. width: 200px;
  776. }
  777. }
  778. @media (min-width: 980px) and (max-width: 1024px) {
  779. .bx-next {
  780. display: none;
  781. visibility: hidden;
  782. }
  783. .bx-prev {
  784. display: none;
  785. visibility: hidden;
  786. }
  787. }
  788. /* LARGE DESKTOP SCREENS */
  789. @media (min-width: 1201px) {
  790. #top_main_content .span12 {
  791. /* width: 98%; */
  792. }
  793. /* only for the course tools */
  794. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  795. float: left;
  796. }
  797. .course-tool {
  798. width: 160px;
  799. }
  800. .btn-invitations {
  801. margin-left: 120px;
  802. }
  803. .btn-msg {
  804. padding-left: 27px;
  805. }
  806. .btn-inv {
  807. padding-left: 27px;
  808. padding-right:5px;
  809. }
  810. .btn-inv-off {
  811. padding-left: 27px;
  812. padding-right:5px;
  813. }
  814. }