PDF rausgenommen
This commit is contained in:
10
msd2/myoos/themes/phoenix/scss/tools/_button-sizes.scss
Normal file
10
msd2/myoos/themes/phoenix/scss/tools/_button-sizes.scss
Normal file
@ -0,0 +1,10 @@
|
||||
//
|
||||
// Button sizes
|
||||
//
|
||||
|
||||
// e.g. @include u-button-size ($padding-y, $padding-x, $font-size);
|
||||
@mixin u-button-size ($padding-y, $padding-x, $font-size){
|
||||
line-height: 1.4;
|
||||
@include px-to-rem(padding, $padding-y $padding-x);
|
||||
@include px-to-rem(font-size, $font-size);
|
||||
}
|
3
msd2/myoos/themes/phoenix/scss/tools/_mixins.scss
Normal file
3
msd2/myoos/themes/phoenix/scss/tools/_mixins.scss
Normal file
@ -0,0 +1,3 @@
|
||||
// Core Components
|
||||
|
||||
@import "mixins/myoos";
|
89
msd2/myoos/themes/phoenix/scss/tools/_resets.scss
Normal file
89
msd2/myoos/themes/phoenix/scss/tools/_resets.scss
Normal file
@ -0,0 +1,89 @@
|
||||
/** Resets
|
||||
*************************************************** **/
|
||||
|
||||
button::-moz-focus-inner, input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
button {
|
||||
background: none;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
input:-webkit-autofill {
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
input, button, *:focus {
|
||||
outline: none !important;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
select {
|
||||
border: 2px solid #E5E7E9;
|
||||
height: 46px;
|
||||
padding: 12px;
|
||||
outline: none;
|
||||
line-height: 1 !important;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
label {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
iframe, fieldset {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
audio, canvas, img, video {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
p {
|
||||
display: block;
|
||||
-webkit-margin-before: 0.1em;
|
||||
-webkit-margin-after: 0.1em;
|
||||
-webkit-margin-start: 0px;
|
||||
-webkit-margin-end: 0px;
|
||||
}
|
||||
|
||||
a {
|
||||
-webkit-transition: all .300s;
|
||||
-moz-transition: all .300s;
|
||||
-o-transition: all .300s;
|
||||
transition: all .300s;
|
||||
outline: 0;
|
||||
cursor: pointer;
|
||||
&:focus, &:hover, &:active {
|
||||
outline: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
p, pre, ul, ol, dl, dd, blockquote, address, table, fieldset {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user