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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.mod{ | |
} | |
.btn{ | |
padding:8px 10px; | |
background-color:#009A61; |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
body{ | |
padding:50px; | |
} | |
.demo{ | |
background:#eee; | |
overflow:hidden; |
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
body{ | |
padding:50px; | |
} | |
.demo{ | |
background:#eee; | |
overflow:hidden; | |
border-radius:5px; | |
/* text-align 是继承的 */ |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
:root { | |
background-color: #6374AB; | |
padding: 50px; | |
} | |
ul{ | |
background:yellow; | |
margin:0; |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
.module{ | |
background:linear-gradient(45deg,#f06,yellow); | |
height:200px; | |
padding:20px; | |
border-radius:3px; |
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
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@charset "utf-8"; | |
/** | |
* 对话框组件 | |
* @file: 样式组件: _chat-content.sass | |
* @author: lanhong |
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
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// imagestyle 演示变量sass里变量的作用 | |
//========================================================== | |
$imgStyleBorder:2px solid red; | |
$imgStyleBorder:1px solid #ccc !default; |
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
// ---- | |
// Sass (v3.3.0.rc.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// 演示多个变量一起声明 | |
//================================================= | |
$sidebarTagColor : red blue; |
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
/** | |
* gradient 质感 | |
*/ | |
body,div{ | |
margin:0; | |
padding:0; | |
} | |
.mod{ | |
background:#343434; /* 盒子outside的颜色 */ | |
height:400px; |