Pages

Showing posts with label Web Design Concepts. Show all posts
Showing posts with label Web Design Concepts. Show all posts

The following 16 colors are easiest for most people to tell apart

Research shows that people also feel calm when looking at them. They are excellent choices to use in charts and graphs.

396AB1
#82A3DB
#3E9651
#94CA6B
#948B3D
#DCD280
#DA7C30
#F1A75C
#922428
#B68570
#CC2529
#E36E90
#6B4C9A
#B087C7
#535154
#909595

Custom radio buttons with CSS only

Do you want to customize the ugly radio buttons in your web forms . There are some plugins like icheck to do the job but when the page loading time matters you may not want to call those unwanted heavy css and javascript files.

There is a way to customize the radios buttons with only css3. it has cross browser support because thse days almost all the web browsers support it.

What it does is hiding the default radio buttons and using CSS Pseudo-elements adding some stylish buttons.

The working code is below

HTML

<div class="alert">
  <ul>
  <li>
    <input type="radio" id="f-option" name="selector">
    <label for="f-option">Pizza</label>
    
    <div class="check"></div>
  </li>
  
  <li>
    <input type="radio" id="s-option" name="selector">
    <label for="s-option">Bacon</label>
    
    <div class="check"><div class="inside"></div></div>
  </li>
  
  <li>
    <input type="radio" id="t-option" name="selector">
    <label for="t-option">Cats</label>
    
    <div class="check"><div class="inside"></div></div>
  </li>
</ul>
</div>

CSS

ul li{
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 50px;
}

ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

ul li label{
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
  padding: 25px 25px 25px 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

ul li:hover label{
    color: #dedede;
}

ul li .check{
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 30px;
  left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

ul li:hover .check {
  border: 5px solid #dedede;
}

ul li .check::before {
  display: block;
  position: absolute;
    content: '';
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 5px;
    left: 5px;
  margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 5px solid #0DFF92;
}

input[type=radio]:checked ~ .check::before{
  background: #0DFF92;
}

input[type=radio]:checked ~ label{
  color: #0DFF92;
}

Web Designer color palette 2015

Recomended Web designer color palette for 2015

Web Designer color palette 2015

Colors used by Google.com for the Olympic games


ecomerce psd template for opencart jewellery store

Open cart PSD Web template for online jewellery store

with white color theme with minimal design. easy implementing simple layout can be useful for magneto, prestashop, zen cart or opencart template. download link



ecommerce website design

ecommerce website design- Freelance Sri Lanka


E Comerce web site design for a mobile phone shop - Color Theme is Light Blue. Screen resolution 980px - 3 Columns layout - Content management System used - Opencart

Web Design visual for Sri lankan Beach Hotel

Web Site Design for Sri Lankan Beach hotel
Web Site Design for Sri Lankan Beach hotel
This is a high resolution web site design visual i have done for a beach hotel located in Sri Lanka

Web Design Visual done for Constructing company

A Web Design Visual done for a leading Constructing company.
Web Design Visual

High resolution image - A Web Design Visual done for a leading Constructing company. Best view for width of 980px.

Search This Blog