tap/app/assets/stylesheets/application.css.scss

126 lines
1.9 KiB
SCSS
Raw Normal View History

2014-11-06 13:46:59 +00:00
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require_self
*/
2014-11-23 20:12:31 +00:00
@import "bootstrap-sprockets";
@import "bootstrap";
/* mixins, variables, etc. */
$gray-medium-light: #eaeaea;
@mixin box_sizing {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
2014-11-25 09:05:00 +00:00
2014-11-23 20:12:31 +00:00
/* miscellaneous */
.debug_dump {
clear: both;
float: left;
width: 100%;
margin-top: 45px;
@include box_sizing;
}
2014-12-09 11:01:25 +00:00
2014-12-09 10:38:10 +00:00
2014-11-23 20:12:31 +00:00
/* forms */
input, textarea, select, .uneditable-input {
border: 1px solid #bbb;
width: 100%;
margin-bottom: 15px;
@include box_sizing;
}
input {
height: auto !important;
}
2014-11-25 12:09:55 +00:00
2014-12-09 13:39:27 +00:00
/* boostrap */
body {
padding-top: 80px;
}
2014-11-25 12:09:55 +00:00
/* footer */
footer {
margin-top: 45px;
padding-top: 5px;
border-top: 1px solid #eaeaea;
color: #777;
}
footer a {
color: #555;
}
footer a:hover {
color: #222;
}
footer small {
float: left;
}
footer ul {
float: right;
list-style: none;
}
footer ul li {
float: left;
margin-left: 15px;
}
2014-12-09 10:38:10 +00:00
2014-12-09 18:44:48 +00:00
.usercontainer{
position: absolute;
2014-12-09 12:10:36 +00:00
width: 49%;
border-radius: 0px;
margin: -2px;
padding: 18px;
border-color: #000;
border: 0px;
2014-12-09 18:44:48 +00:00
vertical-align: bottom;
2014-12-09 11:08:49 +00:00
2014-12-09 12:10:36 +00:00
font-weight: bold;
font-size: 24px;
2014-12-09 10:38:10 +00:00
2014-12-09 18:44:48 +00:00
}
.overview{
//margin-left: 2px;
width: 50%;
float: left;
border-radius: 0px;
2014-12-09 12:10:36 +00:00
2014-12-09 18:44:48 +00:00
.btn{
width: 100%;
border-color: #444;
}
2014-12-09 12:10:36 +00:00
}
.center{
text-align: center;
2014-12-09 10:38:10 +00:00
}