Merge remote-tracking branch 'raywan/feature/border-radius' into raymazing

Meh, merging generated/minified files is lame.

Conflicts:
	alchemy/static/css/style.css
main
Alan Orth 2014-10-30 16:45:34 +03:00
commit 44977f33f3
3 changed files with 109 additions and 103 deletions

File diff suppressed because one or more lines are too long

View File

@ -9,93 +9,93 @@
// version: v3.0.1 (2014-05-27) // version: v3.0.1 (2014-05-27)
// TABLE OF MIXINS: // TABLE OF MIXINS:
// align-content // align-content
// align-items // align-items
// align-self // align-self
// animation // animation
// animation-delay // animation-delay
// animation-direction // animation-direction
// animation-duration // animation-duration
// animation-fill-mode // animation-fill-mode
// animation-iteration-count // animation-iteration-count
// animation-name // animation-name
// animation-play-state // animation-play-state
// animation-timing-function // animation-timing-function
// appearance // appearance
// backface-visibility // backface-visibility
// background-clip // background-clip
// background-image // background-image
// background-origin // background-origin
// background-size // background-size
// blur // blur
// border-bottom-left-radius // border-bottom-left-radius
// border-bottom-right-radius // border-bottom-right-radius
// border-image // border-image
// border-radius // border-radius
// border-top-left-radius // border-top-left-radius
// border-top-right-radius // border-top-right-radius
// box-shadow // box-shadow
// box-sizing // box-sizing
// brightness // brightness
// calc // calc
// column-count // column-count
// column-gap // column-gap
// column-rule // column-rule
// column-width // column-width
// columns // columns
// contrast // contrast
// display // display
// drop-shadow // drop-shadow
// filter // filter
// flex // flex
// flex-basis // flex-basis
// flex-direction // flex-direction
// flex-grow // flex-grow
// flex-shrink // flex-shrink
// flex-wrap // flex-wrap
// font-face // font-face
// grayscale // grayscale
// hue-rotate // hue-rotate
// hyphens // hyphens
// invert // invert
// justify-content // justify-content
// keyframes // keyframes
// opacity // opacity
// order // order
// perspective // perspective
// perspective-origin // perspective-origin
// placeholder // placeholder
// rotate // rotate
// rotate3d // rotate3d
// rotateX // rotateX
// rotateY // rotateY
// rotateZ // rotateZ
// saturate // saturate
// scale // scale
// scale3d // scale3d
// scaleX // scaleX
// scaleY // scaleY
// scaleZ // scaleZ
// selection // selection
// sepia // sepia
// size // size
// skew // skew
// skewX // skewX
// skewY // skewY
// transform // transform
// transform-origin // transform-origin
// transform-style // transform-style
// transition // transition
// transition-delay // transition-delay
// transition-duration // transition-duration
// transition-property // transition-property
// transition-timing-function // transition-timing-function
// translate // translate
// translate3d // translate3d
// translateX // translateX
// translateY // translateY
// translateZ // translateZ
// user-select // user-select
.align-content(...) { .align-content(...) {
@process: ~`(function(r){return r=r||"stretch"})((function(){var r="@{arguments}";return r=r.replace(/^\[|\]$/g,"")})())`; @process: ~`(function(r){return r=r||"stretch"})((function(){var r="@{arguments}";return r=r.replace(/^\[|\]$/g,"")})())`;

View File

@ -29,6 +29,10 @@ samp {
font-family: @monospace; font-family: @monospace;
} }
pre {
border: none;
}
a { a {
.transition(color 0.2s ease-in-out); .transition(color 0.2s ease-in-out);
color: #2e2e2e; color: #2e2e2e;
@ -38,6 +42,10 @@ a {
} }
} }
.container {
max-width: 970px;
}
.header { .header {
background-color: #efefef; background-color: #efefef;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
@ -84,8 +92,8 @@ a {
.post { .post {
font-size: 16px; font-size: 16px;
&.mini-post { &.mini-post {
padding: 30px 0;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
padding: 30px 0;
&:last-child { &:last-child {
border-bottom: none; border-bottom: none;
} }
@ -100,9 +108,16 @@ a {
font-size: 18px; font-size: 18px;
} }
} }
&.full-post { .post-content {
* img { img {
max-width: 940px; display: block;
height: auto;
max-width: 100%;
width: 100% \9;
}
pre,
img {
.border-radius(4px);
} }
} }
.post-content { .post-content {
@ -115,16 +130,7 @@ a {
} }
} }
// .highlight {
// width: 600px;
// margin-left: 50px;
// margin-bottom: 20px;
// overflow: auto;
// border: 1px solid grey;
// border-radius: 5px;
// }
.separator { .separator {
margin-top: 30px;
margin-bottom: 30px; margin-bottom: 30px;
margin-top: 30px;
} }