mdarby (owner)

Revisions

gist: 108919 Download_button fork
public
Public Clone URL: git://gist.github.com/108919.git
Embed All Files: show embed
CSS #
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
# CSS
.about_me{
  text-align:justify
}
 
.about_me .recommend_me{
  padding:40px 0px
}
 
.about_me .polaroid img{
  float:left;
  margin-top:4px;
  margin-right:7px;
  border:1px solid #DDD;
  padding:2px;
  padding-bottom:15px
}
 
# SASS
.about_me
  :text-align justify
 
  .recommend_me
    :padding 40px 0px
 
  .polaroid
    img
      :float left
      :margin-top 4px
      :margin-right 7px
      :border 1px solid #DDD
      :padding 2px
      :padding-bottom 15px