Last change
on this file since de83113 was 9868304, checked in by ste08 <sjovanoska@…>, 4 months ago |
Frontend + some backend changes
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Line | |
---|
1 | .signup-container {
|
---|
2 | background-image: url('../images/registration.jpg');
|
---|
3 | background-size: cover;
|
---|
4 | background-position: center;
|
---|
5 | height: 100vh;
|
---|
6 | display: flex;
|
---|
7 | justify-content: center;
|
---|
8 | align-items: center;
|
---|
9 | width: 100%;
|
---|
10 | flex-direction: column;
|
---|
11 | padding: 20px;
|
---|
12 | box-sizing: border-box;
|
---|
13 | }
|
---|
14 |
|
---|
15 | h1 {
|
---|
16 | text-align: center;
|
---|
17 | }
|
---|
18 |
|
---|
19 | .form-group {
|
---|
20 | margin-bottom: 15px;
|
---|
21 | }
|
---|
22 |
|
---|
23 | label {
|
---|
24 | display: block;
|
---|
25 | margin-bottom: 5px;
|
---|
26 | }
|
---|
27 |
|
---|
28 | input {
|
---|
29 | width: 100%;
|
---|
30 | padding: 8px;
|
---|
31 | margin: 5px 0;
|
---|
32 | border: 1px solid #ddd;
|
---|
33 | border-radius: 4px;
|
---|
34 | }
|
---|
35 |
|
---|
36 | button {
|
---|
37 | width: 100%;
|
---|
38 | padding: 10px;
|
---|
39 | background-color: #007bff;
|
---|
40 | color: white;
|
---|
41 | border: none;
|
---|
42 | border-radius: 4px;
|
---|
43 | cursor: pointer;
|
---|
44 | }
|
---|
45 |
|
---|
46 | button:hover {
|
---|
47 | background-color: #0056b3;
|
---|
48 | }
|
---|
49 |
|
---|
50 | p {
|
---|
51 | text-align: center;
|
---|
52 | }
|
---|
53 |
|
---|
54 | .login-container {
|
---|
55 | display: flex;
|
---|
56 | flex-direction: column;
|
---|
57 | align-items: center;
|
---|
58 | justify-content: center;
|
---|
59 | height: 100vh;
|
---|
60 | background-color: #f4f4f4;
|
---|
61 | }
|
---|
62 |
|
---|
63 | h1 {
|
---|
64 | margin-bottom: 20px;
|
---|
65 | color: mediumvioletred;
|
---|
66 | }
|
---|
67 |
|
---|
68 | .input-group {
|
---|
69 | margin-bottom: 15px;
|
---|
70 | display: flex;
|
---|
71 | flex-direction: column;
|
---|
72 | }
|
---|
73 |
|
---|
74 | label {
|
---|
75 | font-size: 14px;
|
---|
76 | font-weight: bold;
|
---|
77 | }
|
---|
78 |
|
---|
79 | input {
|
---|
80 | padding: 10px;
|
---|
81 | font-size: 16px;
|
---|
82 | margin-top: 5px;
|
---|
83 | border-radius: 5px;
|
---|
84 | border: 1px solid #ccc;
|
---|
85 | width: 250px;
|
---|
86 | }
|
---|
87 |
|
---|
88 | button {
|
---|
89 | padding: 12px 20px;
|
---|
90 | background-color: mediumvioletred;
|
---|
91 | color: white;
|
---|
92 | border: none;
|
---|
93 | border-radius: 5px;
|
---|
94 | cursor: pointer;
|
---|
95 | font-size: 16px;
|
---|
96 | width: 100%;
|
---|
97 | }
|
---|
98 |
|
---|
99 | button:hover {
|
---|
100 | background-color: #e91e63;
|
---|
101 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.