hugo-theme-hyde-hyde/static-src/scss/hyde-hyde/_responsive.scss

104 lines
1.8 KiB
SCSS
Raw Normal View History

2018-07-25 02:21:03 +00:00
// mobile ~320..480px
// 320px ~ 16rem/16px ~ 18.8235/17px ~ 17.7778/18px
// 480px ~ 30rem/16px ~ 28.2353rem/17px ~ 26.6667rem/18px
2018-07-29 21:42:57 +00:00
@media (min-width: 320px) and (max-width: 768px) {
2018-07-26 07:51:50 +00:00
.sidebar {
2018-07-27 23:06:50 +00:00
li {
padding: .1rem 0;
}
}
.hidden-tablet {
display: none;
2018-07-26 07:51:50 +00:00
}
2018-07-25 02:21:03 +00:00
}
// tablet/medium device ~768px+
// 768px ~ 48em/16px ~ 45.1765em/17px ~ 42.6667/18px
@media (min-width: 768px) {
html,
body {
2018-07-27 23:06:50 +00:00
font-size: $small-device-font-size;
}
2018-07-25 02:21:03 +00:00
.sidebar {
bottom: 0;
left: 0;
position: fixed;
text-align: left;
top: 0;
width: 18rem;
}
.sidebar-sticky {
left: 1rem;
position: absolute;
right: 1rem;
top: 1rem;
}
.content {
margin-left: 20rem;
margin-right: 2rem;
max-width: 38rem;
}
.layout-reverse {
.sidebar {
left: auto;
right: 0;
}
.content {
margin-left: 2rem;
margin-right: 20rem;
}
}
.col-sm-8 {
width: 66.66666667%;
}
.project__title {
margin-top: 0.2rem;
}
2018-09-12 02:32:10 +00:00
.navigation {
2018-07-25 02:21:03 +00:00
display: flex;
justify-content: space-between;
a {
width: calc(50% - 10px);
&:nth-child(2) {
margin-top: 0;
}
}
}
}
// Large devices (laptops/desktops, 992px and up)
// ~ 62rem/16px ~ 58.3529rem/17px ~ 55.1111rem/18px
@media (min-width: 992px) {
html,
body {
2018-07-27 23:06:50 +00:00
font-size: $large-device-font-size;
2018-07-25 02:21:03 +00:00
}
.content {
margin-left: 20rem;
margin-right: 2rem;
2018-08-13 03:20:46 +00:00
// max-width: 46.056rem;
max-width: 38rem; // @ ~70 CPL
2018-07-25 02:21:03 +00:00
}
.layout-reverse .content {
margin-left: 4rem;
margin-right: 22rem;
}
.col-md-4 {
float: left;
width: 33.33333333%;
}
.col-md-8 {
float: left;
width: 66.66666667%;
}
.portfolio-container {
width: 1360px;
}
}
// Large device ~1024px
// 1024px ~ 64rem/16px ~ 60.2353rem/17px 56.8889rem/18px
@media (min-width: 1024px) {
// styles
}