_responsive.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Extra small devices (phones, less than 768px) */
  2. @media (max-width: 767px) {
  3. body{
  4. padding: 0;
  5. }
  6. .sidebar-wrapper {
  7. position: static;
  8. width: inherit;
  9. }
  10. .main-wrapper {
  11. padding: 30px;
  12. }
  13. .main-wrapper .time {
  14. position: static;
  15. display: block;
  16. margin-top: 5px;
  17. }
  18. .main-wrapper .upper-row {
  19. margin-bottom: 0;
  20. }
  21. }
  22. /* Small devices (tablets, 768px and up) */
  23. @media (min-width: 768px) {
  24. }
  25. /* Medium devices (desktops, 992px and up) */
  26. @media (min-width: 992px) {
  27. .skillset .level-title {
  28. display: inline-block;
  29. float: left;
  30. width: 30%;
  31. margin-bottom: 0;
  32. }
  33. .skillset .level-bar {
  34. display: inline-block;
  35. width: 70%;
  36. float: left;
  37. position: relative;
  38. top: 1px;
  39. }
  40. }
  41. /* Large devices (large desktops, 1200px and up) */
  42. @media (min-width: 1200px) {
  43. }
  44. /* Ex-Large devices (large desktops, 1200px and up) */
  45. @media (min-width: 1400px) {
  46. }