Slowly moving away from stylus to scarlet

This commit is contained in:
2016-11-27 23:28:22 +09:00
parent 105cf0d128
commit adb6ca1e0c
31 changed files with 92 additions and 28 deletions

28
styles/old/config.styl Normal file
View File

@ -0,0 +1,28 @@
textColor = rgb(60, 60, 60)
mainColor = rgb(248, 165, 130)
hoverColor = darken(mainColor, 10%)
linkColor = darken(mainColor, 15%)
linkHoverColor = darken(hoverColor, 20%)
activeLinkColor = rgb(100, 149, 237)
uiBorder = 1px solid rgba(0, 0, 0, 0.1)
uiHoverBorder = 1px solid rgba(0, 0, 0, 0.15)
uiBackground = linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.037) 100%)
uiHoverBackground = linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.027) 100%)
outlineShadowLight = 0 0 6px alpha(black, 0.05)
outlineShadowMedium = 0 0 6px alpha(black, 0.13)
outlineShadowHeavy = 0 0 6px alpha(black, 0.6)
transitionSpeed = 290ms
fadeSpeed = 200ms
contentPadding = 1.5rem
contentPaddingMobile = 1rem
uiElement()
border uiBorder
background uiBackground
border-radius 3px
transition all transitionSpeed ease
&:hover
border uiHoverBorder
background uiHoverBackground
box-shadow outlineShadowMedium