source: Sources/frontend/src/app/login/login.component.css@ 8423429

Last change on this file since 8423429 was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 973 bytes
Line 
1.header {
2 display: flex;
3 justify-content: space-between;
4}
5
6.parent-container {
7 display: flex;
8 flex-direction: column;
9 justify-content: center;
10 margin-left: 200px;
11 margin-right: 200px;
12}
13
14button {
15 background-color: #3A98B9;
16 border: none;
17 padding: 5px;
18 height: 50px;
19 width: 15%;
20 margin: 5px;
21 cursor: pointer;
22 border-radius: 5px;
23 color: #FFF1DC;
24 font-weight: normal;
25 font-size: large;
26}
27
28.login-form {
29 display: flex;
30 flex-direction: column;
31}
32
33input {
34 width: 50%;
35 height: 40px;
36 margin: none;
37 border-color: rgba(159, 168, 216, 0.5);
38 border-radius: 5px;
39}
40
41.register-form {
42 display: flex;
43 flex-direction: column;
44}
45
46.radio {
47 width: auto !important;
48 height: 30px;
49 margin: none;
50}
51
52.action-button {
53 width: 50%
54}
55
56label {
57 font-size: large;
58 color: rgba(27, 39, 107, 0.8);
59}
60
61.form-check {
62 display: flex;
63}
64
65.radio-button-group {
66 display: flex;
67 align-items: center;
68}
69#logo{
70 width: 300px;
71 height: 300px;
72}
Note: See TracBrowser for help on using the repository browser.