Expressive, robust, feature-rich CSS language built for Node.js
0
votes
1answer
17 views
How to do signature using stylus and save it as image in Android?
I want to do signature using stylus and save it as image on my device.I have already develope signature using gestures but now I want to do it using stylus.How can I get this kind of thing.
0
votes
1answer
16 views
WPF - StylusLogic - Index was out of range
I've an WPF Application which is used by several people and sometimes I get an email with this error, but I am not able to reproduce it. Anyone got an idea what to to do get this error?
at ...
0
votes
0answers
17 views
How can I use Nib and Stylus with Guard?
Is it possible for me to use nib with guard!?
So far I have been using guard-stylus to compile my .styl to .css. I include a package.json file for npm to install stylus and nib to my project ...
1
vote
1answer
14 views
Tablet stylus on Win7 generates unwanted MouseMove event
I have C#/.NET 3.5 WindowsForms application that does its own handing of MouseDown/MouseUp events.
I have 2 same tablets with stylus (pen), one with WindowsXp, other with Windows7.
On both platforms, ...
0
votes
1answer
18 views
CSS3 solid drop shadow effect mixin using stylus
So I want to achieve an effect of a drop-shadow like the one seen here: http://zurb.com/playground/css-boxshadow-experiments#peri-table
But I want to create a mixin that allows me to specify the ...
1
vote
0answers
11 views
in stylus,use undefined function,not throw any error
for example,
stylus file:
.dd
fun()
height:10px
and I use nodejs to complie it
var stylus = require('stylus');
var s = stylus(stylusCode);
s.render(function(err, css) {
if (err) {
...
0
votes
1answer
18 views
best way to avoid changes in node_modules and styl folders
im using git and git tortoise version control, i create this file .gitignore in the root of my node project
.gitignore
node_modules
public/stylesheets/*.css
i want to ignore all changes in ...
0
votes
1answer
38 views
How to start with stylus?
Stylus looks great but no tutorials at all. Please tell me how to cofigure Stylus. I mean:
Where to put all this javascript commands like this, in which file.
stylus(str)
.set('filename', ...
0
votes
0answers
9 views
How to reference assets relative to the stylus directory instead of the css compile directory?
Can I define a path that's relative to the stylus file and not to the compiled CSS file.
I try to build a bower package, containing a stylus file that's supposed to be included directly from bowers ...
0
votes
1answer
18 views
Passing functions with arguments in Stylus
I keep trying to pass functions as arguments in Stylus, but it never renders anything. What am I doing wrong? I don't understand this...
foo(fn)
fn(x)
fn(x)
background x
.myclass
...
0
votes
1answer
45 views
Stylus can't do simple math
Why isn't this working in Stylus?
gutter = 2%
get(numerator, denominator)
x = (numerator / denominator) * 100% // get(1, 4) returns 25% as it should
(x) - gutter // returns x as 24.5% wtf
...
0
votes
0answers
26 views
I'm getting an indentation error in my styl file
I'm new to node and stylus. I have this .styl file that I wrote but I am getting a error saying expected "indent" got "outdent".
style.styl
html , body
height: 100%
width: 100%
...
1
vote
1answer
72 views
Merge multiple css rules of a class into a single class declaration?
I like it to separate different concerns of a class in css.
Example:
// Layout
.myElement {
width: 100px;
height: 100px;
margin: 10px;
padding: 5px;
}
// Chrome
.myElement {
...
1
vote
0answers
68 views
Stylus css within Slim template with Sinatra
I'm using Sinatra, and I'm trying to use Slim for the HTML and Stylus for the the CSS.
I'm unsure of what the correct way to do this is. What I've got at the moment works (locally, I've not tried ...
0
votes
1answer
35 views
Grunt and Stylus or RequireJS subtasks
It seems to me that I've missed something. Is there any possibility to make subtasks for Stylus or RequireJS within Grunt? I mean something like that:
grunt.initConfig({
stylus: {
dev: {
...
0
votes
0answers
38 views
Generating NICE consolidated .stylus from .css files?
After working for some time in new projects with Stylus I find myself now in front of a bigger project with multiple thousand lines of css which I want to convert to Stylus.
I know about the:
stylus ...
0
votes
1answer
55 views
Using “style='foo'” in jade to modify css related by pseudo-element “:before”
EDIT: I have tried to implement user1737909's advice. Using classes (i.e., .pie.size-{size}:BEFORE) instead of attribute selectors (i.e., .pie[data-value={size}]:BEFORE) has gotten me past the first ...
0
votes
1answer
111 views
What is the best way to use the “stylus” css preprocessor on Windows and Visual Studio?
The "WebEssentials" Visual Studio Plugin only supports less, but I find the stylus syntax much more readable. Anybody uses it on Windows?
0
votes
1answer
106 views
Stylus not working on Express
I have a project that uses Nib and Stylus on Express server, and after some changes this compilation process from .styl to .css didn't work anymore, I was looking in documentation of Nib, Stylus and ...
0
votes
2answers
73 views
Referencing .styl of a node_module in Brunch
I have a brunch-with-Chaplin app. I want to use Twitter Bootstrap, but since it's written in LESS I would prefer to switch to a stylus version. Luckily there is a bootstrap-stylus node_module out ...
2
votes
2answers
49 views
putting media query in a mixin
I have many css files and many occurrences of:
@media all and (max-width: 400px), (orientation: portrait) {
....//In each file different style that relevant to the component the file represnt
}
...
0
votes
0answers
76 views
How to make WordPress style.css work as a Stylus .styl -file
I'm running into problems with WordPress style.css files when trying to use then as .styl -files. The style.css from twentytwelve is the only one so far that works when I just change it from .css to ...
0
votes
1answer
107 views
Sublime text 2: Is it possible to get autocomplete for Stylus?
I just started using Stylus and it seems very nice. I even found a syntax highlighter extension that seems to work nicely.
Does anyone know if it's possible to get autocomplete working with it?
...
2
votes
1answer
135 views
in node.js, how to pass variables to :stylus filter from jade?
creating a variable within jade that I wish the stylus filter to use.
using #{var} does not appear to work. for example, this code:
- var color1 = 'blue'
stylus:
div
background-color ...
0
votes
1answer
83 views
in jade, cannot get style @font-face to work
from a working css file (generated by font-squirrel):
@font-face {
font-family: 'SnowTopCaps';
src: url('/fonts/snowtopcaps-webfont.eot');
src: url('/fonts/snowtopcaps-webfont.eot?#iefix') ...
0
votes
1answer
69 views
Can Stylus be configured to compile .css once, instead of on .styl change?
In development, recompiling .css every time .styl changes is highly convenient. But on production, we don't want to spend resources compiling on every request; we'd like to compile once, on app start.
...
1
vote
1answer
289 views
Less mixin issue for multiple box-shadow arguments
I'm working in a project were i have to use less, personally I always use stylus, but I can't with this project, so I have the next question. how can i do this, that i'm doing with stylus, with less ? ...
0
votes
0answers
144 views
when using stylus middleware with express 3, does the dest path have to be the same as the express static path?
Express@3.x, Coffee@1.6.1, Stylus@0.32.1
stylCompile = (str, path) ->
console.log "str: #{str} path: #{path}"
stylus(str).set('filename', path).use(nib())
app.configure( ->
...
3
votes
1answer
202 views
Sass/Scss to Stylus converter?
Is there any tools to convert SASS/SCSS to Stylus?
Or any way to speed up compiling SCSS?
0
votes
3answers
73 views
CSS preprocessor that runs in IE6
I'm looking for a CSS pre-processor than runs in IE6. Obviously it needs to be written in Javascript; does Less, Stylus, or any other JS-based CSS preprocessor work in IE6?
(It's for a widget which ...
0
votes
1answer
51 views
Stylus editor with highlighting and formatting for Mac
Please advise if there is some lightweight text editor that can highlight and possible format Stylus markup.
Now I use WebStorm and love it but it still doesn't support Stylus.
Thanks in advance!
0
votes
0answers
107 views
in node/stylus: get stylus to compile to different dirctory
original .styl files in .../node/ directory
wish to compile .css to .../nginx/ directory
app.use( stylus.middleware({
src: __dirname + '/node/www',
dest: __dirname + '/node/www',
//=src: ...
0
votes
2answers
78 views
Change CSS property from existing value with Stylus
I have a set of styles like this one:
&.blue
background #189cd8
&:hover
background lighten(#189cd8, 10%)
I wonder if it's possible not to set that color the second time for hover ...
1
vote
0answers
85 views
Styling for multi tenant rails api apps
I have a rails-api app where I'd like to serve a stylus stylesheet with some variables set based on the current tenant.
The main app itself is a static, standalone RIA built in Dojo and doesn't make ...
3
votes
1answer
193 views
Stylus CSS highlighting plugin for Netbeans?
Stylus CSS pre-processor is awesome but since i used to code in Netbeans, it is hard to code without color highlighting. is there any Netbeans plugin for Stylus available? If any, it'll be perfect!
...
2
votes
2answers
80 views
How does Stylus variable scope work across files?
Ideally, I'd like to set up one file "colors.styl" where I can define all the colors used across the site like so:
// --------------- GENERAL VARIABLE DEFINITIONS
$beige = #F2F2F2
$darkGrey ...
0
votes
2answers
233 views
Trouble Setting up Stylus Middleware w/ Node and Connect
I'm attempting to set up the Stylus Middleware, and having no success. The documentation is not good for beginners or those new to Nodejs. What I surmised was that I need to create a little mini Node ...
1
vote
1answer
96 views
XQuery performance
I use stylus studio (with DATA DIRECT)/xQuery to join two xmls files to one( files are converted from CSV to xml first and then joined).
Customer(header) data read first , then matching transaction ...
1
vote
1answer
112 views
Exception occurs while pressing a button on TouchScreen using a Stylus or a finger in a WPF app
I have WPF app with an initial window which shows up as Splashscreen at Startup. During the Startup there is a background thread and we can cancel the this thread by clicking the button in ...
0
votes
1answer
72 views
how to display 2 directory lists side by side in node.js express
scenario:
clients can upload to 2 directories
wanted result:
client can see the listings of both directories side by side
am newbie to these.
a couple of jquery listbox widgets to display the ...
0
votes
0answers
52 views
Ant task to compile stylus file to normal css file?
I am trying to use stylus in a project, that is using ANT build.
I need to compile the stylus file to normal css before packaging the war.
is there a way to do it?
Note : I am not using node.js, ...
0
votes
1answer
414 views
Stylus middleware in Express not working?
In app.coffee I have
stylus = require("stylus")
...
app.use stylus.middleware
debug: true
src: __dirname + "/stylus"
dest: __dirname + "/public/css"
compile: (src) ->
...
3
votes
1answer
399 views
How to use Yeoman with Express/Jade/Stylus?
I recently found out about Yeoman and found it can be very useful in improving workflow. However, I noticed it seem to focus only on client side projects? ExpressJS is a popular framework that seems ...
1
vote
1answer
97 views
Node.js Stylus Interpolation is not rendering the styles as show in docs
I'm trying to run a vendor specific css mixin with stylus and I took this straight from the docs, but It doesn't seem to be rendering the css at all. Any thoughts?
vendor(prop, args)
...
1
vote
1answer
109 views
Stylus – Adding Percentages
I'm having trouble with Stylus. I'm simply trying to create a function which returns the width of a column given a span n. Here is my code:
column-gap = 1%
column-width = 15%
column-span(n)
...
2
votes
3answers
224 views
How can I generate a random color with Stylus CSS?
I'm using Express for Node.js and the CSS engine I'm using is Stylus. Stylus is awesome except I can't seem to figure out how to pass in a color variable or otherwise generate a random color. I tried ...
0
votes
0answers
67 views
Compile Jade templates via its API with proper paths to external resources
I need to compile a set of Jade templates to static HTML files with Jade API from command line.
It works fine but I wonder if there a simple solution to make it set proper relative links to the ...
0
votes
0answers
52 views
Pen Input IDE Editor for Java [closed]
does anyone know if there is a plugin java editor or a current project to develop one, that would enable pen/stylus code input. I am really looking forward to the Windows Pro Tablet due in January ...
0
votes
1answer
60 views
-webkit-filter in Stylus
Any chance to use this in stylus:
-webkit-filter: invert();
whitout
@css{
.something {
-webkit-filter: invert();
}
}
Thnx
0
votes
1answer
100 views
Can't use Stylus @import with Rake Pipeline
I have a simple Rake Pipeline setup that does nothing more than run "stylus" on my .styl files, using the rake-pipeline-web-filters gem. (The original pipeline does much more, but I've trimmed it down ...

