resources/public/css/style.less @ f3a7dbc24531

Moar!
author Steve Losh <steve@stevelosh.com>
date Thu, 29 Sep 2011 23:10:14 -0400
parents 91a2b99c465f
children 991807da55ff
// Mixins
.border-radius(@radius: 5px) {
    -webkit-background-clip: padding-box;
    -webkit-border-radius: @radius;
    -moz-background-clip: padding-box;
    -moz-border-radius: @radius;
    border-radius: @radius;
    background-clip: padding-box;
}
.box-shadow(@horizontal: 0px, @vertical: 1px, @blur: 2px, @color: #CCC) {
  -webkit-box-shadow: @horizontal @vertical @blur @color;
  -moz-box-shadow: @horizontal @vertical @blur @color;
  box-shadow: @horizontal @vertical @blur @color;
}
.inset-box-shadow(@horizontal: 0px, @vertical: 1px, @blur: 2px, @color: #CCC) {
  -webkit-box-shadow: inset @horizontal @vertical @blur @color;
  -moz-box-shadow: inset @horizontal @vertical @blur @color;
  box-shadow: inset @horizontal @vertical @blur @color;
}
.multi-color-border(@top, @sides, @bottom) {
    border-top: 1px solid @top;
    border-left: 1px solid @sides;
    border-right: 1px solid @sides;
    border-bottom: 1px solid @bottom;
}
.multi-border-radius(@topLeft: 5px, @topRight: 5px, @bottomRight: 5px, @bottomLeft: 5px) {
    -webkit-border-top-left-radius: @topLeft;
    -webkit-border-top-right-radius: @topRight;
    -webkit-border-bottom-right-radius: @bottomRight;
    -webkit-border-bottom-left-radius: @bottomLeft;
    -moz-border-radius-topleft: @topLeft;
    -moz-border-radius-topright: @topRight;
    -moz-border-radius-bottomright: @bottomRight;
    -moz-border-radius-bottomleft: @bottomLeft;
    border-top-left-radius: @topLeft;
    border-top-right-radius: @topRight;
    border-bottom-right-radius: @bottomRight;
    border-bottom-left-radius: @bottomLeft;
}
.vertical-gradient(@start: #000, @stop: #FFF) {
    background: (@start + @stop) / 2;
    background: -webkit-gradient(linear, left top, left bottom, from(@start), to(@stop));
    background: -moz-linear-gradient(center top, @start 0%, @stop 100%);
    background: -moz-gradient(center top, @start 0%, @stop 100%);
}

// Utils
.group:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

// Layout
header {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 48px !important;
    padding-bottom: 12px;
    border-bottom: 2px solid #ddd;
}
footer {
    text-align: center;
    border-top: 2px solid #ddd;
    padding-top: 16px;
    margin-top: 32px;
    font-style: italic;
    font-size: 15px;
    font-family: Palatino, Georgia, serif;
}
h1, h2, h3, h4, h5, h6 {
    a {
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }
}
section.message {
    border-bottom: 2px solid #ddd;
    margin-top: -12px;
    margin-bottom: 32px;
}
.page-title {
    position: relative;
    margin-bottom: 16px;

    .profile {
        position: absolute;
        top: -42px;
        right: 2px;

        form {
            display: inline;

            input {
                margin-left: 12px;
            }
        }
    }
}
li.show {
    margin-top: 12px;

    img {
        float: left;
        margin-right: 20px;
        padding: 4px;
        border: 1px solid #ccc;
        width: 60px;
        height: 60px;
    }
}