Socket
Book a DemoInstallSign in
Socket

stylmixs

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylmixs

Stylus mixins

latest
Source
npmnpm
Version
0.0.4
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Stylus mixins

Install

npm i stylmixs -D
@import 'stylmixs'

fface()

// stylus
fface('Inter', 'fonts/inter-300-light', 300, normal)
/* css */
@font-face {
  font-family: 'Inter';
  src: url("fonts/inter-300-light.woff2") format('woff2'), url("fonts/inter-300-light.woff") format('woff'), url("fonts/inter-300-light.ttf") format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

column()

integer values from 1 to 12

// stylus
.element
  column(2)
/* css */
.element {
  width: 16.66%;
}

placeholder()

// stylus
.input
  +placeholder()
    font-weight 300
/* css */
.input::-webkit-input-placeholder {
  font-weight: 300;
}
.input:-moz-placeholder {
  font-weight: 300;
}
.input::-moz-placeholder {
  font-weight: 300;
}
.input:-ms-input-placeholder {
  font-weight: 300;
}

gap()

// stylus
.box
  gap(30px)
/* css */
.box {
  padding-left: 30px;
  padding-right: 30px;
}

pad()

// stylus
.box
  pad(30px)
/* css */
.box {
  padding-top: 30px;
  padding-bottom: 30px;
}

fs()

integer values from 1 to 12

// stylus
.message
  fs(20, 28)
/* css */
.message {
  font-size: 1.25em;
  line-height: 1.4em;
}

overlay()

// stylus
.overlay
  position relative
  &:after
    +overlay()
      background-color rgba(#000, .5)
/* css */
.overlay {
  position: relative;
}
.overlay:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}

hidebox()

// stylus
.file
  &__input
    hidebox()
/* css */
.file__input {
  position: absolute;
  z-index: -1000;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

mq()

// stylus
+mq(960px)
  .query
    display none
/* css */
@media screen and (max-width: 960px) {
  .query {
    display: none;
  }
}

ts()

// stylus
.button
  ts(color, background-color)
/* css */
.button {
  transition: color .25s ease-in-out, background-color .25s ease-in-out;
}

ratio()

// stylus
.aspect-ratio
  ratio(16, 9)
/* css */
.aspect-ratio {
  padding-bottom: 56.25%;
  height: 0;
}

percent()

// stylus
// percentage of the number
.percent
  width percent(320, 960)
/* css */
.percent {
  width: 33.33%;
}

Keywords

stylus

FAQs

Package last updated on 19 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts