Skip to main content

Home/ CSS Evangelist/ Group items tagged add

Rss Feed Group items tagged

my mashable

CaptionTube : Create Captions for Your YouTube Videos - 0 views

  •  
    Since the launch of the captions features for YouTube videos in last august, YouTube allows user add captions to one of your videos by uploading a closed caption file using the "Captions and Subtitles" menu on the editing page. This feature is used for people using other languages and even who are deaf or hard of hearing.
kumar app

[Tutorial]How To Create Professional Logo using Photoshop - 4 views

  •  
    In the following tutorial you are going to learn how to make a simple, clean, modern logo that you can use in your future projects. It is very simple to create this logo but after the basic shape is created you can easily add your own unique quirks (gradients, drop shadows etc) to make the logo trul
yc c

Animate.css - a bunch of plug-and-play CSS animations - 0 views

  •  
    To use them in your project, simply add the class to the element, or call the animation yourself in your CSS file. The classes and the animations have the same name.
tech vedic

How to Add Dynamic Values, Graphs in PowerPoint from MS Excel? - 0 views

  •  
    While making PowerPoint presentations, you must face the need of adding values, tables or graphs. Well, here is the solution in this tutorial.
Vernon Fowler

WinLess - Windows GUI for less.js - 0 views

  • If you have a folder called 'less' and a folder called 'css' on the same level, add the parent folder. WinLess will then automatically use the css folder as output folder.
Vernon Fowler

LESS « The Dynamic Stylesheet language - 0 views

  • It is possible to output rules in your CSS which allow tools to locate the source of the rule. Either specify the option dumpLineNumbers as above or add !dumpLineNumbers:mediaQuery to the url.
Vernon Fowler

An introduction to LESS, and comparison to Sass | Smashing Coding - 0 views

  • The only difference in variables between LESS and Sass is that, while LESS uses @, Sass uses $. There are some scope differences as well, which I’ll get to shortly.
  • With Sass, you declare @mixin prior to the style to identify it as a mixin. Later, you declare @include to call it.
  • Parametric Mixins Like having functions in your CSS (*swoon*), these can be immensely useful for those seemingly redundant tasks of modern-day CSS.
  • ...8 more annotations...
  • .border-radius( @radius: 3px ) { -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; }
  • The syntax in Sass is very similar to that of LESS. Just use the $ for variables, and call the mixins with the @mixin and @include method mentioned earlier.
  • Selector Inheritance Here’s something not provided in LESS. With this ability, you can append a selector to a previously established selector without the need to add it in a comma-separated format. .menu { border: 1px solid #ddd; } .footer { @extend .menu; } /* will render like so: */ .menu, .footer { border: 1px solid #ddd; }
  • With LESS, you can nest ids, classes and elements as you go.
  • You can also refer in element styles to their pseudo-elements by using the &, which in this case functions similar to this in JavaScript.
  • Sass is a lot more versatile with numbers than LESS. It has built into it conversion tables to combine comparable units.
  • Sass seems to have a lot more color options — not that I would need them all. Lighten and darken are the only ones that I see myself using often.
  • Conditionals and Control This is rather nifty, and another thing not provided by LESS. With Sass, you have the ability to use if { } else { } conditional statements, as well as for { } loops. It supports and, or and not, as well as the <, >, <=, >= and == operators.
tech vedic

Clever adapter connects USB accessories to your Android device - 0 views

  •  
    You can connect keyboard, USB hard drives as well as gaming controllers to your Android phone or tablet using a USB OTG adapter. Have a look on this tutorial.
Vernon Fowler

Choosing great variable names - 0 views

  • try to choose semantic names for your variables
  • describe its function or purpose
  • // Better $brand-color: red; $accent-color: yellow;
  • ...3 more annotations...
  • postfix color names with -color:
  • add a prefix like header- or footer- for specific sections: // Header $header-height: 100px; $header-background-color: $color-brand; // Footer $footer-height: 200px; $footer-background-color: #aaa;
  • I like to keep all my variables in a single file, called _config.scss, that I include in my primary stylesheet using the @import directive.
Kaitlyn Em

Web Design Directory - Add Your URL For Free - 0 views

  •  
    A web design firm that offers professional web design, web development, graphic design, and software development services at affordable prices.
  •  
    A web design firm that offers professional web design, web development, graphic design, and software development services at affordable prices.
yc c

mozdev.org - multicolumn: index - 0 views

  •  
    Adds CSS3 column support to firefox
awqi zar

Waynes Favorite News,Latest Articles,Intresting Business News Online: 15 Great Flickr E... - 0 views

  •  
    No matter how good a service is it can always use a few tweaks, and Flickr is no different.The 15 add-ons we've gathered below for Firefox will help with everything from navigation to uploading, accessing Flickr in countries that block the service, and much more. Take a look and you're bound to find an extension to enhance your Flickr experience.
Scott Hendrickson

A List Apart: Articles: Frameworks for Designers - 0 views

  • How should a CSS framework be built? There are several possible ways to go about building a framework, but the most common and arguably the most useful is to abstract your common CSS into individual stylesheets that each cover a particular part of the whole. For example, you may have a stylesheet that sets up the typography and another that handles the mass reset. The beauty of the approach is the ability to selectively include only the styles that you need. You may end up with six or seven different stylesheets in your framework, but if a particular project doesn’t need one or two of them, they don’t have to be included. The framework we created in our office has five stylesheets: reset.css—handles the mass reset. type.css—handles the typography. grid.css—handles the layout grid. widgets.css—handles widgets like tabs, drop-down menus, and “read more” buttons. base.css—includes all the other stylesheets, so that we only need to call base.css from our (X)HTML documents to use the entire framework.
  • A word of caution This method works quite well, but there is a valid concern to be raised: it adds to the number of HTTP connections needed to render each page. On large, high-traffic sites, adding five more HTTP connections to every page view may result in angry system administrators. Two possible solutions to this are: Include everything in a single file, rather than breaking it into modules. The problem here is that you lose the ability to include only certain parts of the framework, and you also make maintenance more difficult. Have a server-side process that dynamically flattens the individual files into a single response. I’ve not seen this done, but it could be very efficient if done well. Using my example framework above, this dynamic process could occur when base.css is requested, but not when type.css, grids.css, etc. are. This way, the individual components are still available, but the entire framework is available in a flattened version, as well.
Perry Branch

A List Apart: Articles: Understanding Web Design - 0 views

  • Architecture (the kind that uses steel and glass and stone) is also an apt comparison—or at least, more apt than poster design. The architect creates planes and grids that facilitate the dynamic behavior of people. Having designed, the architect relinquishes control. Over time, the people who use the building bring out and add to the meaning of the architect’s design.
  • Web design is the creation of digital environments that facilitate and encourage human activity; reflect or adapt to individual voices and content; and change gracefully over time while always retaining their identity.
  • Great web designs are like great buildings. All office buildings, however distinctive, have lobbies and bathrooms and staircases. Websites, too, share commonalities.
  • ...1 more annotation...
  • The experienced web designer, like the talented newspaper art director, accepts that many projects she works on will have headers and columns and footers. Her job is not to whine about emerging commonalities but to use them to create pages that are distinctive, natural, brand-appropriate, subtly memorable, and quietly but unmistakably engaging.
  •  
    A good discussion of Web Design in the context of traditional design.
anonymous

13 Awesome Javascript CSS Menus - 0 views

  • 13 Awesome Javascript CSS Menus Posted in: Ajax, Javascript, CSS 31 Comments, Add a Response
yc c

swfIR: swf Image Replacement - 0 views

shared by yc c on 09 Mar 09 - Cached
  •  
    swfIR (swf Image Replacement) is here to solve some of the design limitations of the standard HTML image and its widely-accepted associated CSS values, while still supporting standards-based design concepts.
anonymous

CSS Dock Menu - 0 views

  • If you are a big Mac fan, you will love this CSS dock menu that I designed. It is using Jquery Javascript library and Fisheye component from Interface and some of my icons. It comes with two dock styles - top and bottom. This CSS dock menu is perfert to add on to my iTheme. Here I will show you how to implement it to your web page.
my mashable

Pixelpipe : Upload & Share Picture Directly from Browser to Social Web - 0 views

  •  
    I usually had a big problem on handling more social media website account. I think most of the users come across the same problem. Recently i had a chance to hear about Pixelpipe. On the very first look i really amazed about the features. Initially this site used to post your digital pictures, videos, and audio files to a growing number of different services with only a few clicks. This site seems to be similar as ping.fm, which allows post to text based messages.
‹ Previous 21 - 40 of 46 Next ›
Showing 20 items per page