test-hugo/public/themes/novela/assets/scss/horizontal-rule.scss
2020-11-19 20:49:43 +01:00

32 lines
No EOL
574 B
SCSS

hr{
position: relative;
width: 100%;
max-width: 680px;
margin: 50px auto;
border: 0;
height: 14.36px;
background-repeat: repeat-x;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-position: center;
}
@media screen and (max-width: 1070px){
hr{
max-width: 507px;
}
}
@media screen and (max-width: 735px){
hr{
max-width: 486px;
width: calc(100vw - 40px);
margin: 0px auto 50px;
}
}
@media screen and (max-width: 340px){
hr{
padding: 0 20px;
}
}