responsive.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  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. #section-social .row > [class*="span"], #section-social .row-fluid > [class*="span"] {
  593. float: left;
  594. }
  595. /* Some fixes for w~720px */
  596. .section-mycampus #top_main_content .content-column {
  597. float: left;
  598. width: 720px;
  599. }
  600. .section-mycampus #homepage {
  601. float: left;
  602. width: 720px;
  603. }
  604. .section-mycampus #hot_courses {
  605. float: left;
  606. width: 660px;
  607. }
  608. .section-mycourses .course-box .course-box-actions {
  609. display: none;
  610. }
  611. .section-mycampus .hot-course-box, .section-mycourses .course-box {
  612. width: 95%;
  613. }
  614. #top_main_content .span9 {
  615. float: left;
  616. width: 720px;
  617. }
  618. #top_main_content .span3 {
  619. clear: both;
  620. width: 97%;
  621. }
  622. /* Footer fixes */
  623. footer {
  624. border-top: 1px solid #CCCCCC;
  625. background-color: #fff;
  626. background-image: none;
  627. color: #666;
  628. }
  629. footer #footer_left a, footer #footer_center a, footer #footer_right a {
  630. color : #F1D40D;
  631. }
  632. #footer_left , #footer_right #admin_name, #footer_right #software_name {
  633. text-align: center !important;
  634. /*width: 600px;*/
  635. clear: both;
  636. }
  637. footer .container .row {
  638. padding-top: 15px;
  639. }
  640. .social-menu .social-background-content .thumbnail{
  641. border:none;
  642. box-shadow: none;
  643. }
  644. }
  645. @media (max-width: 600px) {
  646. #top_main_content .span3 {
  647. clear: both;
  648. width: 100%;
  649. }
  650. #top_main_content .menu-column #user_image_block {
  651. display: none;
  652. visibility: hidden;
  653. }
  654. #top_main_content .menu-column #reservation_block, #top_main_content .menu-column #notice_block, #top_main_content .menu-column #help_block {
  655. /*width: 94%;*/
  656. }
  657. footer {
  658. padding-top: 2em;
  659. padding-bottom: 2em;
  660. }
  661. #top_main_content .span9 {
  662. width: 100%;
  663. clear: both;
  664. }
  665. .section-mycampus #hot_courses .page-header {
  666. width: 565px;
  667. }
  668. /*.course-tool {
  669. width: 190px;
  670. }*/
  671. .well_border .row .span2 .thumbnail {
  672. background-color: #FFFFFF;
  673. background-image: none;
  674. float: left;
  675. margin-right: 10px;
  676. border: none;
  677. box-shadow: none;
  678. }
  679. #top_main_content .menu-column .block_user_info {
  680. width: 280px;
  681. }
  682. .section-mycampus .hot-course-box, .section-mycourses .course-box {
  683. width: auto;
  684. }
  685. .course-box-thumbnail-box{
  686. float: left;
  687. }
  688. #announcements{
  689. clear: both;
  690. }
  691. #settings .span6 {
  692. min-height: 260px;
  693. width: 100%;
  694. }
  695. #settings .form-search .span3 {
  696. float: left;
  697. width: 65%;
  698. height: 34px;
  699. margin-right: 5px;
  700. }
  701. #settings .row .span6 .well_border ul li{
  702. font-size: 13px;
  703. padding-top: 3px;
  704. padding-bottom: 3px;
  705. line-height: 16px;
  706. }
  707. #course_tools .course-title-tools h3 {
  708. color: #0191C7;
  709. background:none;
  710. }
  711. .page-header {
  712. display: none;
  713. }
  714. #course_category,#skill_block,.user_notification{
  715. display: none;
  716. visibility: hidden;
  717. }
  718. #course_tools .row .home-course-intro{
  719. width: 100%;
  720. }
  721. }
  722. @media (min-width: 801px) and (max-width: 979px) {
  723. /* No topbar */
  724. #topbar {
  725. display:none;
  726. }
  727. header{
  728. margin-top: 15px;
  729. }
  730. #homepage .row .span9{
  731. width: 610px;
  732. }
  733. .subnav .dropdown-menu li a {
  734. color: #FFFFFF;
  735. font-weight: normal;
  736. }
  737. /* fixes tabs */
  738. .subnav .nav-tabs > li > a, .subnav .nav-pills > li > a {
  739. padding-left: 6px;
  740. padding-right: 6px;
  741. }
  742. .subnav .dropdown-toggle {
  743. display:none;
  744. }
  745. .subnav .nav > li > a, .navbar .dropdown-menu a {
  746. color: #ccc;
  747. }
  748. .subnav .nav > li > a:hover,
  749. .subnav .dropdown-menu a:hover {
  750. }
  751. .course-tool {
  752. width: 220px;
  753. }
  754. }
  755. @media (max-width: 979px) {
  756. /* Remove any padding from the body */
  757. body {
  758. padding-top: 0;
  759. }
  760. #topbar_push {
  761. height: 0px;
  762. }
  763. .section-social .span9 {
  764. width: 530px;
  765. }
  766. }
  767. @media (min-width: 980px) and (max-width: 1200px) {
  768. /* fixes tabs */
  769. .subnav .nav-tabs > li > a, .subnav .nav-pills > li > a {
  770. padding-left: 6px;
  771. padding-right: 6px;
  772. }
  773. /* only for the course tools */
  774. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  775. float: left;
  776. }
  777. .course-tool {
  778. width: 280px;
  779. }
  780. .section-social .span9, .section-mycourses .span9{
  781. width: 680px;
  782. }
  783. .section-social .social-menu {
  784. width: 200px;
  785. }
  786. .section-social .span5 {
  787. width: 350px;
  788. }
  789. }
  790. @media (min-width: 980px) and (max-width: 1024px) {
  791. .bx-next {
  792. display: none;
  793. visibility: hidden;
  794. }
  795. .bx-prev {
  796. display: none;
  797. visibility: hidden;
  798. }
  799. }
  800. /* LARGE DESKTOP SCREENS */
  801. @media (min-width: 1201px) {
  802. #top_main_content .span12 {
  803. /* width: 98%; */
  804. }
  805. /* only for the course tools */
  806. #course_tools .row > [class*="span"], #course_tools .row-fluid > [class*="span"] {
  807. float: left;
  808. }
  809. .course-tool {
  810. width: 160px;
  811. }
  812. .btn-invitations {
  813. margin-left: 120px;
  814. }
  815. .btn-msg {
  816. padding-left: 27px;
  817. }
  818. .btn-inv {
  819. padding-left: 27px;
  820. padding-right:5px;
  821. }
  822. .btn-inv-off {
  823. padding-left: 27px;
  824. padding-right:5px;
  825. }
  826. }