mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
fixed stylelint
This commit is contained in:
parent
ad34f105fa
commit
6190d686f0
@ -17,16 +17,17 @@ export default {
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style>
|
<style>
|
||||||
|
@font-face {
|
||||||
|
font-family: 'WorkSans', sans-serif !important;
|
||||||
|
src: url(./assets/scss/fonts/WorkSans-VariableFont_wght.ttf) format('truetype');
|
||||||
|
}
|
||||||
#app {
|
#app {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-width: 360px;
|
min-width: 360px;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-family: 'WorkSans';
|
font-family: 'WorkSans', sans-serif !important;
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: 'WorkSans';
|
|
||||||
src: url(./assets/scss/fonts/WorkSans-VariableFont_wght.ttf) format('truetype');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 500px) {
|
@media screen and (max-width: 500px) {
|
||||||
#app {
|
#app {
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
|
|||||||
@ -1,4 +1,5 @@
|
|||||||
html, body {
|
html,
|
||||||
|
body {
|
||||||
height: 100%; /* both html and body */
|
height: 100%; /* both html and body */
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8,11 +9,11 @@ html, body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.text-gradido {
|
.text-gradido {
|
||||||
color: rgba(249,205,105,1)
|
color: rgb(249 205 105 / 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.gradient-gradido {
|
.gradient-gradido {
|
||||||
background-image: linear-gradient(146deg, rgb(220, 167, 44) 50%, rgba(197,141,56,1) 100%);
|
background-image: linear-gradient(146deg, rgb(220 167 44) 50%, rgb(197 141 56 / 100%) 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Button */
|
/* Button */
|
||||||
@ -21,12 +22,12 @@ html, body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-gradido {
|
.btn-gradido {
|
||||||
background-image: linear-gradient(146deg, rgb(220, 167, 44) 50%, rgba(197,141,56,1) 100%);
|
background-image: linear-gradient(146deg, rgb(220 167 44) 50%, rgb(197 141 56 / 100%) 100%);
|
||||||
background-size: auto;
|
background-size: auto;
|
||||||
background-position: 0% 0%;
|
background-position: 0% 0%;
|
||||||
background-repeat: repeat;
|
background-repeat: repeat;
|
||||||
border-style: none;
|
border-style: none;
|
||||||
box-shadow: 10px 10px 50px 10px rgba(56, 56, 56, 0.31);
|
box-shadow: 10px 10px 50px 10px rgb(56 56 56 / 31%);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -39,11 +40,12 @@ html, body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.btn-outline-gradido {
|
.btn-outline-gradido {
|
||||||
color: rgb(248,161,27);
|
color: rgb(248 161 27);
|
||||||
border: 1px solid #F5B805;
|
border: 1px solid #f5b805;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control, .custom-select {
|
.form-control,
|
||||||
|
.custom-select {
|
||||||
border-radius: 17px;
|
border-radius: 17px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
@ -117,8 +119,8 @@ html, body {
|
|||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gradido-global-color-0E79BC {
|
.gradido-global-color-blue {
|
||||||
color: #0E79BC;
|
color: #0e79bc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gradido-global-color-text {
|
.gradido-global-color-text {
|
||||||
|
|||||||
@ -51,5 +51,4 @@
|
|||||||
|
|
||||||
// Bootstrap-vue (2.21.1) scss
|
// Bootstrap-vue (2.21.1) scss
|
||||||
@import "../../../node_modules/bootstrap-vue/src/index";
|
@import "../../../node_modules/bootstrap-vue/src/index";
|
||||||
|
@import "gradido-template";
|
||||||
@import "gradido-template.scss";
|
|
||||||
|
|||||||
@ -35,7 +35,8 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.auth-header {
|
.auth-header {
|
||||||
font-family: 'Open Sans';
|
font-family: 'Open Sans', sans-serif !important;
|
||||||
|
position: sticky;
|
||||||
}
|
}
|
||||||
.navbar-collapse {
|
.navbar-collapse {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
@ -45,10 +46,6 @@ export default {
|
|||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.auth-header {
|
|
||||||
position: sticky;
|
|
||||||
}
|
|
||||||
|
|
||||||
.g-logo-radius {
|
.g-logo-radius {
|
||||||
-webkit-border-top-right-radius: 77px;
|
-webkit-border-top-right-radius: 77px;
|
||||||
-webkit-border-bottom-right-radius: 137px;
|
-webkit-border-bottom-right-radius: 137px;
|
||||||
|
|||||||
@ -30,7 +30,7 @@
|
|||||||
{{ $t('auth.left.hasAccount') }}
|
{{ $t('auth.left.hasAccount') }}
|
||||||
<b-link
|
<b-link
|
||||||
to="/login"
|
to="/login"
|
||||||
class="text-gradido gradido-global-color-0E79BC"
|
class="text-gradido gradido-global-color-blue"
|
||||||
@click="mobilStart = false"
|
@click="mobilStart = false"
|
||||||
>
|
>
|
||||||
{{ $t('auth.left.hereLogin') }}
|
{{ $t('auth.left.hereLogin') }}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user