source: resources/assets/sass/components/authentication.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 908 bytes
Line 
1body.form-membership {
2 background-attachment: fixed;
3 background-size: cover;
4 padding: 3rem 0;
5
6
7 .form-wrapper {
8 background-color: white;
9 box-shadow: 0 3px 10px rgba(62,85,120,.045);
10 padding: 3rem;
11 border-radius: .5rem;
12 width: 430px;
13 margin: 50px auto;
14 text-align: center;
15
16 #logo {
17 margin: 1rem 0 3rem;
18 img:not(.logo) {
19 display: none;
20 }
21 }
22
23 h5 {
24 text-align: center;
25 margin-bottom: 2rem;
26 }
27
28 form {
29 .form-control {
30 margin-bottom: 1.5rem;
31 }
32 }
33
34 hr {
35 margin: 2rem 0;
36 }
37 }
38}
39
40.user-page {
41
42 height: 100vh;
43 display: flex;
44 align-items: center;
45 justify-content: center;
46 overflow: auto;
47
48 .card {
49 width: 500px;
50 .card-title {
51
52 }
53 .card-body {
54 padding: 50px;
55 }
56 }
57
58}
Note: See TracBrowser for help on using the repository browser.