Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sisage
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marcos Albano
sisage
Commits
11dc6bbe
Commit
11dc6bbe
authored
Jan 22, 2021
by
Marcos Vinicius Felix De Sousa da Silva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correção de posição de button do login.
parent
002a729d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
80 additions
and
3 deletions
+80
-3
app.css
public/css/app.css
+63
-1
login.blade.php
resources/views/auth/login.blade.php
+17
-2
No files found.
public/css/app.css
View file @
11dc6bbe
...
@@ -2666,6 +2666,29 @@ select.form-control-lg:not([size]):not([multiple]) {
...
@@ -2666,6 +2666,29 @@ select.form-control-lg:not([size]):not([multiple]) {
transition
:
color
.15s
ease-in-out
,
background-color
.15s
ease-in-out
,
border-color
.15s
ease-in-out
,
box-shadow
.15s
ease-in-out
,
-webkit-box-shadow
.15s
ease-in-out
transition
:
color
.15s
ease-in-out
,
background-color
.15s
ease-in-out
,
border-color
.15s
ease-in-out
,
box-shadow
.15s
ease-in-out
,
-webkit-box-shadow
.15s
ease-in-out
}
}
/*
._enter {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: .9rem;
line-height: 1.6;
border-radius: .25rem;
-webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
} */
@media
screen
and
(
prefers-reduced-motion
:
reduce
)
{
@media
screen
and
(
prefers-reduced-motion
:
reduce
)
{
.btn
{
.btn
{
-webkit-transition
:
none
;
-webkit-transition
:
none
;
...
@@ -2722,6 +2745,8 @@ fieldset:disabled a.btn {
...
@@ -2722,6 +2745,8 @@ fieldset:disabled a.btn {
/* border-color: #3490dc */
/* border-color: #3490dc */
background
:
linear-gradient
(
174deg
,
rgb
(
206
,
128
,
93
)
0%
,
rgb
(
165
,
78
,
7
)
71%
);
background
:
linear-gradient
(
174deg
,
rgb
(
206
,
128
,
93
)
0%
,
rgb
(
165
,
78
,
7
)
71%
);
border-color
:
white
;
border-color
:
white
;
/* padding: .5rem; */
margin
:
0
0
.5rem
0
;
}
}
.btn-primary
:hover
{
.btn-primary
:hover
{
...
@@ -2731,11 +2756,48 @@ fieldset:disabled a.btn {
...
@@ -2731,11 +2756,48 @@ fieldset:disabled a.btn {
border-color
:
white
;
border-color
:
white
;
}
}
/* Alteração de butão */
.btn-enter
{
color
:
#fff
;
background
:
linear-gradient
(
174deg
,
rgb
(
206
,
128
,
93
)
0%
,
rgb
(
165
,
78
,
7
)
71%
);
border-color
:
white
;
width
:
20rem
;
/* padding: .5rem; */
margin
:
.3rem
0
.5rem
0
;
}
.btn-enter
:hover
{
font-weight
:
400
;
color
:
white
;
background
:
linear-gradient
(
174deg
,
rgb
(
98
,
191
,
103
)
4%
,
rgb
(
16
,
157
,
23
)
10%
,
rgb
(
4
,
36
,
7
)
100%
);
border-color
:
white
;
}
.btn-cadastro
{
color
:
#fff
;
background
:
linear-gradient
(
174deg
,
rgb
(
206
,
128
,
93
)
0%
,
rgb
(
165
,
78
,
7
)
71%
);
border-color
:
white
;
width
:
9rem
;
/* padding: .5rem; */
margin
:
.4rem
.6rem
.5rem
0
;
}
.btn-cadastro
:hover
{
font-weight
:
400
;
color
:
white
;
background
:
linear-gradient
(
174deg
,
rgb
(
98
,
191
,
103
)
4%
,
rgb
(
16
,
157
,
23
)
10%
,
rgb
(
4
,
36
,
7
)
100%
);
border-color
:
white
;
}
/*
.btn-primary:hover {
.btn-primary:hover {
color: #fff;
color: #fff;
background-color: #227dc7;
background-color: #227dc7;
border-color: #2176bd
border-color: #2176bd
}
}
*/
.btn-primary.focus
,
.btn-primary.focus
,
.btn-primary
:focus
{
.btn-primary
:focus
{
...
...
resources/views/auth/login.blade.php
View file @
11dc6bbe
...
@@ -60,17 +60,32 @@
...
@@ -60,17 +60,32 @@
<
div
class
=
"form-group row mb-0"
>
<
div
class
=
"form-group row mb-0"
>
<
div
class
=
"col-md-8_enter offset-md-4_login"
>
<
div
class
=
"col-md-8_enter offset-md-4_login"
>
<
button
type
=
"submit"
class
=
"btn btn-
primary
"
>
<
button
type
=
"submit"
class
=
"btn btn-
enter
"
>
{{
__
(
'agendamento.login'
)
}}
{{
__
(
'agendamento.login'
)
}}
</
button
>
</
button
>
<!--
<
a
class
=
"btn btn-btn btn-primary"
href
=
"{{ route('users.create') }}"
>
Cadastro
</
a
>
<
a
class
=
"btn btn-btn btn-primary"
href
=
"{{ route('users.create') }}"
>
Cadastro
</
a
>
<
a
class
=
"btn btn-link_esqSenha"
href
=
"{{ route('password.request') }}"
>
{{
__
(
'agendamento.forgot_your_password'
)
}}
</
a
>
-->
</
div
>
</
div
>
<
div
class
=
"form-group row mb-0"
>
<
div
class
=
"col-md-8_enter offset-md-4_login"
>
<!--
<
button
type
=
"submit"
class
=
"btn btn-enter"
>
{{
__
(
'agendamento.login'
)
}}
</
button
>
-->
<
a
class
=
"btn btn-btn btn-cadastro"
href
=
"{{ route('users.create') }}"
>
Cadastro
</
a
>
<
a
class
=
"btn btn-link_esqSenha"
href
=
"{{ route('password.request') }}"
>
<
a
class
=
"btn btn-link_esqSenha"
href
=
"{{ route('password.request') }}"
>
{{
__
(
'agendamento.forgot_your_password'
)
}}
{{
__
(
'agendamento.forgot_your_password'
)
}}
</
a
>
</
a
>
</
div
>
</
div
>
</
div
>
</
div
>
</
form
>
</
form
>
</
div
>
</
div
>
</
div
>
</
div
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment