ID #gimme-code-2013-0002.html#

Easy Responsive Skeleton:

– Responsive
– 3 Breakpoint
– Header + Footer + Content + Left Sidebar + Right Sidebar
– HTML5 + CSS3

Clean, super flexible and fully responsive design!

Responsive Web Design

Ok guys, let’s do this!

HTML source code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<!-- Don't Break My b***s - Gimme Code! Project                                              -->
<!-- This code come with absolutely no warranty                                              -->
<!-- If you use this code in your project please give a link to http://blog.lucedigitale.com -->
<!-- Thanks in advance                                                                       -->
<head>
<title>Title of the page</title>
  
<style type="text/css">
@import url(css/gimme-code-2013-0002.css);
</style>
  
</head>
  
<body>
 
<header>Header</header>
<content>Content</content>
<aside class="first">Aside First</aside>
<aside class="last">Aside Last</aside>
<footer>Footer</footer>
 
</body>
  
</html>

CSS source code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* Don't Break My b***s - Gimme Code! Project                                              */                                   
/* Author: Andrea Tonin - http://blog.lucedigitale.com                                     */                               
/* This code come with absolutely no warranty                                              */                                             
/* If you use this code in your project please give a link to http://blog.lucedigitale.com */
/* Thanks in advance                                                                       */
 
/* Common styles START */
body { font-family: Helvetica, san-serif; text-align: center; }
/* Common styles END */
 
/* Small Display Setup START */
/* Div stack vertically using - width:100% - float:left - */
  header{
    width:100%;
    float:left;
    background-color:aquamarine; 
  }
  aside.first{
    width:100%;
    float:left;
    background-color:deepskyblue; 
  }
  content{
    width:100%;
    float:left;
    background-color:skyblue;
  }
  aside.last{
    width:100%;
    float:left;
    background-color:dodgerblue; 
  }
  footer{
    width:100%;
    float:left;
    background-color:steelblue; 
  }
/* Small Display Setup END */
 
/* First Breakpoint 576px START */
/* Medium resolution display Setup */
@media all and (min-width: 36em){
  aside.first{
    width:50%;
    float:left;
  }
  content{
    width:100%;
    float:left;
    background-color:skyblue;
  }
  aside.last{
    width:50%;
    float:right;
  }
}      
/* First Breakpoint 576px END */
 
/* Second Breakpoint 800px START */
/* Hi resolution display Setup */
@media all and (min-width: 50em){ 
  aside.first{
    width:20%;
    margin-left:-80%;
    float:left;
  }
  content{
    width:60%;
    float:left;
    margin-left:20%;
    background-color:skyblue;
  }
  aside.last{
    width:20%;
    float:right;
  }
}  
/* Second Breakpoint 800px END */

Breakpoints setup at @media all and (min-width: xxem).
To stack Div vertically I use – width:100%float:left -.

DEMO

 

DOWNLOAD

Distanziatore bianco

My official WebSite >