Move sass files out of public to resources/sass
This commit is contained in:
Executable
+71
@@ -0,0 +1,71 @@
|
||||
/* General overwrite */
|
||||
body{
|
||||
color: $font-color;
|
||||
font-size: $font-size-base;
|
||||
font-family: 'Muli', Arial, sans-serif;
|
||||
.wrapper{
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
a{
|
||||
color: $info-color;
|
||||
|
||||
&:hover, &:focus{
|
||||
color: $info-states-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
a:focus, a:active,
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner,
|
||||
select::-moz-focus-inner,
|
||||
input[type="file"] > input[type="button"]::-moz-focus-inner{
|
||||
outline:0 !important;
|
||||
}
|
||||
.ui-slider-handle:focus,
|
||||
.navbar-toggle,
|
||||
input:focus,
|
||||
button:focus {
|
||||
outline : 0 !important;
|
||||
-webkit-box-shadow: inset 0 -2px 0 #2196f3;
|
||||
box-shadow: inset 0 -2px 0 #2196f3;
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
.form-control,
|
||||
.input-group-addon,
|
||||
.tagsinput,
|
||||
.navbar,
|
||||
.navbar .alert{
|
||||
@include transition($general-transition-time, $transition-linear);
|
||||
}
|
||||
|
||||
.sidebar .nav a,
|
||||
.table > tbody > tr .td-actions .btn{
|
||||
@include transition($fast-transition-time, $transition-ease-in);
|
||||
}
|
||||
|
||||
.btn{
|
||||
@include transition($ultra-fast-transition-time, $transition-ease-in);
|
||||
}
|
||||
.fa{
|
||||
width: 21px;
|
||||
text-align: center;
|
||||
}
|
||||
.fa-base{
|
||||
font-size: 1.25em !important;
|
||||
}
|
||||
|
||||
.margin-top{
|
||||
margin-top: 50px;
|
||||
}
|
||||
hr{
|
||||
border-color: $medium-pale-bg;
|
||||
}
|
||||
.wrapper{
|
||||
position: relative;
|
||||
top: 0;
|
||||
height: 100vh;
|
||||
}
|
||||
Reference in New Issue
Block a user