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
.wrapper { | |
width: 800px; | |
padding: 20px; | |
padding-bottom: 20px; | |
border: 1px solid #E5E5E5; | |
box-shadow: 0px 1px 10px #DDD; | |
margin: 0 auto; | |
margin-top: -30px; | |
} |
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
.wrapper { | |
width: 800px; | |
padding: 20px; | |
padding-bottom: 20px; | |
border: 1px solid #E5E5E5; | |
box-shadow: 0px 1px 10px #DDD; | |
margin: 0 auto; | |
margin-top: -30px; | |
} |
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
.wrapper { | |
width: 800px; | |
padding: 20px; | |
padding-bottom: 20px; | |
border: 1px solid #E5E5E5; | |
box-shadow: 0px 1px 10px #DDD; | |
margin: 0 auto; | |
margin-top: -30px; | |
} |
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
.wrapper { | |
width: 800px; | |
padding: 20px; | |
padding-bottom: 20px; | |
border: 1px solid #E5E5E5; | |
box-shadow: 0px 1px 10px #DDD; | |
margin: 0 auto; | |
margin-top: -30px; | |
} |
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
var model = models[i]; | |
if (model.done()) { | |
// do nothing | |
} else if (model.isLoading()) { | |
loading.push(model); | |
} else if (model.canRetry()) { | |
model.willRetry(); // может как-то по-другому назвать | |
requesting.push(model); | |
} else { |
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
* { | |
font: 10pt arial; | |
} | |
.parent { | |
width: 100px; | |
overflow: hidden; | |
position: relative; | |
} |
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
.container{ | |
perspective: 250px; | |
perspective-origin: 50% 50%; | |
width: 100px; | |
height: 30px; | |
} | |
.bl { | |
position: absolute; | |
width: 100px; |
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
.container{ | |
font: 10pt arial; | |
width: 100%; | |
height: 2em; | |
-webkit-perspective: 600px; | |
-webkit-perspective-origin: 50% 50%; | |
position: relative; | |
} | |
.bl { |
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
.me { | |
position: absolute; | |
width: 20px; | |
height: 20px; | |
background: #55F; | |
border-radius: 15px; | |
border: 3px solid #FFF; | |
box-shadow: 0px 0px 10px #AAA, inset 0px 0px 10px #33C; | |
left: 200px; |
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
.container { | |
} | |
.photo {} | |
.back {} |