2015-08-10 11:05:06 +02: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 any plugin's vendor/assets/stylesheets directory 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
|
|
|
|
*= require bootstrap-datepicker3
|
|
|
|
*/
|
|
|
|
@import "bootstrap-sprockets";
|
|
|
|
@import "bootstrap";
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color:rgb(255,255,255)
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin-left: 10px;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert.alert-success,
|
|
|
|
.alert.alert-danger {
|
|
|
|
margin-top:-20px
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
height: 35px;
|
|
|
|
background-color: rgb(235, 235, 235)
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
|
|
border-color: rgba(200, 200, 200, 0.6);
|
|
|
|
border-style: solid;
|
|
|
|
border-radius: 5px;
|
|
|
|
border-width: 1px;
|
|
|
|
padding: 10px;
|
|
|
|
background-color: rgb(245, 245, 245);
|
|
|
|
margin-top: 10px;
|
2015-08-11 15:10:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-file {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.btn-file input[type=file] {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
font-size: 100px;
|
|
|
|
text-align: right;
|
|
|
|
filter: alpha(opacity=0);
|
|
|
|
opacity: 0;
|
|
|
|
outline: none;
|
|
|
|
background: white;
|
|
|
|
cursor: inherit;
|
|
|
|
display: block;
|
2015-08-17 13:31:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.vr {
|
|
|
|
border-left: 1px solid grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align:center;
|
2015-08-10 11:05:06 +02:00
|
|
|
}
|