source: phonelux-frontend/src/components/LoginRegisterComponents/LoginFormComponent.css@ e5b84dc

Last change on this file since e5b84dc was e5b84dc, checked in by Marko <Marko@…>, 22 months ago

Prototype version

  • Property mode set to 100644
File size: 2.7 KB
Line 
1.loginform-main-div {
2 text-align: center;
3 justify-content: center;
4 display: flex;
5 padding-top: 40px;
6 padding-bottom: 90px;
7 background-color: #e1e3eb;
8 height: 100%;
9}
10
11
12.loginform-sub-main-div{
13 display: flex;
14 justify-content: center;
15 height: fit-content;
16 width: fit-content;
17 box-shadow: 11px 12px 13px 12px rgb(207, 207, 207);
18 padding-top: 20px;
19 border-radius: 60px;
20 background-color: white;
21 width: 65%;
22
23}
24.loginform-imgs-div {
25 padding-top: 10px;
26 justify-content: center;
27 display: flex;
28 }
29.loginform-image-container {
30 background-color: rgb(223, 221, 221);
31 border-radius: 150px;
32 align-items: center;
33 display: flex;
34 justify-content: center;
35 height: 115px;
36 width: 115px;
37}
38.loginform-profile-img {
39 height: 100px;
40 width: 100px;
41 border-radius: 130px;
42}
43
44.loginform-sub-main-div > div{
45 margin-bottom: 30px;
46 margin-left: 80px;
47 margin-right: 80px;
48}
49
50.loginform-email-input > .inputform-validation-container > .validation-inputs{
51 width: 50%;
52}
53
54.loginform-password-input > .inputform-validation-container > .validation-inputs{
55 width: 50%;
56}
57
58.validation-inputs{
59 width: 100%;
60 height: 50px;
61 border-radius: 60px;
62 box-shadow: inset 0px 0px 25px 0px rgb(197, 189, 189);
63 border: none;
64 outline: none;
65 background-color: #fff;
66}
67
68
69.inputform-validation-container{
70 width: 100%;
71 justify-content: center;
72}
73
74
75.validation-inputs{
76 padding-left: 20px;
77 font-size: 22px;
78 width: 100%;
79}
80
81
82.loginform-button{
83 width: 80%;
84 height: 50px;
85 border-radius: 60px;
86 background-color: #91AD7E ;
87 color: white;
88 font-size: 25px;
89 border: none;
90 margin-top: 30px;
91}
92
93.loginform-button:hover{
94 background-color: #5c6b52 ;
95 cursor:pointer;
96}
97
98.form-error-span{
99 font-size: 12px;
100 padding: 3px;
101 color:red;
102 display: block;
103 justify-content: center;
104 display: none;
105}
106
107.loginform-sub-main-div > div{
108 width: 90%;
109}
110
111.loginform-button{
112 margin-top: 30px;
113 margin-bottom: 10px;
114}
115
116.inputform-validation-container input:invalid[focused="true"] ~ span{
117 display: block;
118}
119
120.loginform-password-input{
121 margin-top: 15px;
122}
123
124.inputform-validation-container input:invalid[focused="true"]{
125 border: 1px solid red;
126}
127
128.form-error-span{
129 width: 100%;
130}
131
132.register-link{
133 font-size: 25px;
134 font-weight: 400;
135 color: rgb(53, 99, 70);
136 text-decoration: none;
137 color: blue;
138}
139
140
141
142 .registerform-link{
143 color: rgb(53, 99, 70);
144 text-decoration: none;
145 }
146
147 .registerform-link:hover{
148 color: blue;
149 }
150
151 .loginform-message-wrapper{
152 display: flex;
153 justify-content: center;
154 }
155
156 .loginform-error-message{
157 color: red;
158 border: 1px solid red;
159 width: fit-content;
160 padding: 10px;
161 border-radius: 50px;
162 background-color: rgb(251, 224, 224);
163 }
Note: See TracBrowser for help on using the repository browser.