forked from RubyLouvre/avalon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
qincheng
committed
Oct 22, 2013
1 parent
acb033a
commit d3f5675
Showing
5 changed files
with
128 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.columns { | ||
width: 2200px; | ||
background: #a9ea00; | ||
-moz-column-width: 340px; | ||
-webkit-column-width: 340px; | ||
column-width: 340px; | ||
-moz-column-gap: 0px; | ||
-webkit-column-gap: 0px; | ||
column-gap: 0px; | ||
margin: 0px; | ||
font-size: 0; | ||
-webkit-text-size-adjust: none; | ||
height: 600px; | ||
} | ||
.noPaddingLeft { | ||
padding-left: 0; | ||
} | ||
app { | ||
display: inline-block; | ||
width: 150px; | ||
height: 150px; | ||
list-style: none; | ||
padding: 20px 20px 0px 20px; | ||
font-size: 12px; | ||
-moz-column-gap: 0; | ||
-webkit-column-gap: 0; | ||
column-gap: 0; | ||
} | ||
.appme { | ||
background: red; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.appme:hover { | ||
outline: 10px solid #d7a6e3; | ||
} | ||
.app_head { | ||
width: 100%; | ||
height: 30px; | ||
line-height: 30px; | ||
text-align: center; | ||
background: #fff; | ||
} | ||
.app_middle { | ||
width: 320px; | ||
height: 150px; | ||
} | ||
.app_big { | ||
width: 320px; | ||
height: 320px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,58 @@ | ||
@import "./mulicolumn.less"; | ||
ul{ | ||
|
||
.columns { | ||
width: 2200px; | ||
background:#a9ea00; | ||
.column-width(320px); | ||
@value:1px solid blue; | ||
.column-rule(@value); | ||
.column-gap(0px); | ||
// padding:20px 0 0 20px; | ||
margin:0px; | ||
font-size:0; | ||
-webkit-text-size-adjust:none; | ||
height:600px; | ||
background: #a9ea00; | ||
.column-width(340px); | ||
@value: 1px solid blue; | ||
// .column-rule(@value); | ||
.column-gap(0px); | ||
margin: 0px; | ||
font-size: 0; | ||
-webkit-text-size-adjust: none; | ||
height: 600px; | ||
} | ||
li{ | ||
display:inline-block; | ||
width:150px; | ||
height:150px; | ||
background: red; | ||
|
||
.noPaddingLeft { | ||
padding-left: 0; | ||
} | ||
|
||
app { | ||
display: inline-block; | ||
width: 150px; | ||
height: 150px; | ||
|
||
list-style: none; | ||
padding:0px; | ||
margin: 0px 20px 20px 0; | ||
// padding:0px; | ||
padding: 20px 20px 0px 20px; | ||
font-size: 12px; | ||
.column-gap(0); | ||
} | ||
li:nth-child(even){ | ||
background: yellowgreen; | ||
|
||
.appme { | ||
background: red; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.appme:hover { | ||
outline: 10px solid rgb(215, 166, 227); | ||
} | ||
|
||
.app_head { | ||
width: 100%; | ||
height: 30px; | ||
line-height: 30px; | ||
text-align: center; | ||
background: #fff; | ||
} | ||
li:nth-child(3n){ | ||
background: pink; | ||
width:320px; | ||
height:150px; | ||
margin:0 0 20px 0; | ||
|
||
.app_middle { | ||
width: 320px; | ||
height: 150px; | ||
} | ||
li:nth-child(4n){ | ||
background:green; | ||
width:320px; | ||
height:320px; | ||
margin:0 0 20px 0; | ||
|
||
.app_big { | ||
width: 320px; | ||
height: 320px; | ||
} |
Empty file.