Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged against

Rss Feed Group items tagged

david clay

What is SOPA - Protest against Sopa and PIPA - 0 views

  •  
    Congress members are striving to do the correct thing by diminishing the epidemic of pirates and counterfeiters but SOPA and PIPA are just not the correct way to do go for it.
Jungle Jar

JungleJar | 25 Free Online Color Resource Web Applications - 0 views

  •  
    This is a list of 25 free color related web applications to create color palettes, edit color palettes, create color themes, test colors and color palettes against a myriad of variables, find color palettes from images, and more.
Soul Book

Color Theory For Designers, Part 2: Understanding Concepts And Terminology - Smashing M... - 0 views

  • ChromaChroma refers to the purity of a color. A hue with high chroma has no black, white or gray in it. Adding white, black or gray reduces its chroma. It’s similar to saturation but not quite the same. Chroma can be thought of as the brightness of a color in comparison to white.In design, avoid using hues that have a very similar chroma. Opt instead for hues with chromas that are the same or a few steps away from each other.
  • SaturationSaturation refers to how a hue appears under particular lighting conditions. Think of saturation in terms of weak vs. strong or pale vs. pure hues.In design, colors with similar saturation levels make for more cohesive-looking designs. As with chroma, colors with similar but not identical saturations can have a jarring effect on visitors.
  • using a hue with a high saturation against a background with low saturation can make the former really stand out.
  • ...10 more annotations...
  • ValueValue could also be called “lightness.” It refers to how light or dark a color is. Ligher colors have higher values. For example, orange has a higher value than navy blue or dark purple. Black has the lowest value of any hue, and white the highest.When applying color values to your designs, favor colors with different values, especially ones with high chroma. High contrast values generally result in more aesthetically pleasing designs.
  • This website combines blue hues with two different values. Because the different values have enough contrast, the overall look is visually appealing.
  • Combining colors with similar muted saturation levels creates a soft design, which is emphasized by the watercolor effects.
  • Colors with very high chroma are best used in moderation
  • Cyan has a high chroma and so really stands out against black and white
  • TonesTones are created when gray is added to a hue. Tones are generally duller or softer-looking than pure hues.Tones are sometimes easier to use in designs. Tones with more gray can lend a certain vintage feel to websites. Depending on the hues, they can also add a sophisticated or elegant look.
  • Tones can be intensified by adding gray around them
  • ShadesA shade is created when black is added to a hue, making it darker. The word is often incorrectly used to describe tint or tone, but shade only applies to hues made darker by the addition of black.In design, very dark shades are sometimes used instead of black and can serve as neutrals. Combining shades with tints is best to avoid too dark and heavy a look.
  • TintsA tint is formed when white is added to a hue, lightening it. Very light tints are sometimes called pastels, but any pure hue with white added to it is a tint.Tints are often used to create feminine or lighter designs. Pastel tints are especially used to make designs more feminine. They also work well in vintage designs and are popular on websites targeted at parents of babies and toddlers.
  • While you don’t necessarily have to remember all of these technical terms, you should be familiar with the actual concepts, especially if you want to master part 3 of this series (in which we create our own color schemes). To that end, here’s a cheat sheet to jog your memory:Hue is color (blue, green, red, etc.).Chroma is the purity of a color (a high chroma has no added black, white or gray).Saturation refers to how strong or weak a color is (high saturation being strong).Value refers to how light or dark a color is (light having a high value).Tones are created by adding gray to a color, making it duller than the original.Shades are created by adding black to a color, making it darker than the original.Tints are created by adding white to a color, making it lighter than the original.
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
sania batool

AVG Internet Security 2015 Key & Keygen Full Download - 0 views

  •  
    AVG Internet Security 2015 Key plus Keygen Generator Full Free is a complete package that protects your PC against threats and malware from the Internet.
Carolyn  Lize

Same Day Loans- Tackle mid month financial crisis situation without much delay. - 0 views

  •  
    Are you suffering from low credit record and sudden fiscal crisis situation? Do you want some cash help to handle these kinds of circumstances? If yes, then you must apply for the same day loans assistance and get sufficient funds from reliable lender. There is no need to fax any paper or documents to the lender against loan amount because it is unsecured types of loan plan.
Derya Vann

Same Day Small Cash Loans- Accomplish Sudden And Unforeseen Needs Before Your Next payd... - 0 views

  •  
    When you are out of funds and want to get quick cash support against low credit status before your next payday.
Andrew William

Teachers Can Manage All Emergency Financial Situations - 0 views

  •  
    Certain payday loans for teachers are available through online medium without any additional processing charges against borrowed amount. A borrower can make a decision one of the forms according to his/her necessities during emergency time.
Brien Forbas

Cash Loans Today- Easy Opportunity For Getting Small Finance Without Going Anywhere! - 0 views

  •  
    With cash loans today you are able to obtain fast and hassle free finances from online lender against your upcoming payday. With the help of these loans one can enable to bridge the short term monetary gap in hassle free manner. Once you have made use of the loans, you can then repay it by your next paycheck with low rates in easy installment.
shahzaibqureshi

YAC Antivirus 2016 Crack and Serial key Free Download - 0 views

  •  
    YAC Antivirus 2016 has Safeguard browser / home page / internet search engine against malicious modification, identify spy ware instantly.
Anzelin Kardashian

Cash Loans for Bad Credit- Handy Financial Alternative Available Online For Insignifica... - 0 views

  •  
    Cash loans for bad credit are one of the perfect fiscal aids where borrower is not at all required to give the hold of his priced assets to the lender against financial support. This particular loan is unsecured in nature so any kind of credit holder can apply for this and get support of money from reliable lender.
Donald Yerke

Useful Guide To Gather Crucial Details Before Choosing Loans For Disabled! - 0 views

  •  
    Loans for disabled people are most excellent for those who are not in a situation to make income on their own and do require financial services to arrangement with any provisional monetary importance during emergency time. The financial services are trouble-free to obtain and can be attained against suitable terms and condition through online medium.
Laura Reed

Dark Patterns - User Interfaces Designed to Trick People - 4 views

  •  
    "A Dark Pattern is a user interface that has been carefully crafted to trick users into doing things, such as buying insurance with their purchase or signing up for recurring bills. Normally when you think of "bad design", you think of the creator as being sloppy or lazy but with no ill intent. This type of bad design is known as a "UI anti-pattern". Dark Patterns are different - they are not mistakes, they are carefully crafted with a solid understanding of human psychology, and they do not have the user's interests in mind. We as designers, founders, UX & UI professionals and creators need to take a stance against Dark Patterns."
Lance Kmize

Installment Loans Kansas- Cover Your Vital Needs and Expenses Easily On Time! - 0 views

  •  
    Installment Loans Kansas is a trustworthy financial alternative for those people who have low credit background. With the help of these advances you can obtain sufficient funds with easy and flexible repayment terms. There is no need to provide collateral and fax any documents to the lender against loan approval.
Teresa Carter

3 Year Loans- Quick Cash Advance for Fix Your Monthly Expenses! - 0 views

  •  
    3 Year loans are suitable financial alternative for those people who have adverse credit score and need some urgent bucks from external sources. This is unsecured type of monetary aid so there is no need to fax unnecessary documents and to undergo credit verification against getting loan support.
builderfly

How to Prevent Credit Card Fraud for My Ecommerce Business? - 0 views

  •  
    Online frauds are sure to occur, and that's why cybersecurity is vital for every business, especially for ecommerce stores. Unlike the other business sites, ecommerce stores have a massive database of its own as well as of their customers. When customers are purchasing certain products from your store, they are trusting you with their details like name, contact details, address as well as credit card & debit card details. So, you must keep your site secure and safe against all the risks of hacking and phishing.
builderfly

How to Secure my Ecommerce Website? - A Complete Guide - 0 views

  •  
    Ecommerce websites directly bring business. If your site is not secure for transactions, you are playing way too risky a game. No one likes to put their cash in the locker of broken keys! And, it's the same case if your online store is not protected against any security badges.
‹ Previous 21 - 40 of 77 Next › Last »
Showing 20 items per page