source: src/main/resources/static/css/styles.css@ d659b83

main
Last change on this file since d659b83 was d659b83, checked in by Marko_Gjorgjievski_201136 <marko.gjorgjievski@…>, 2 months ago

Commiting the whole project

  • Property mode set to 100644
File size: 791 bytes
Line 
1body {
2 font-family: Arial, sans-serif;
3 margin: 0;
4 padding: 0;
5 background-color: #f4f4f4;
6}
7
8.container {
9 max-width: 400px;
10 margin: 100px auto;
11 background-color: #fff;
12 padding: 20px;
13 border-radius: 5px;
14 box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
15}
16
17form {
18 display: flex;
19 flex-direction: column;
20}
21
22label {
23 margin-top: 10px;
24}
25
26input {
27 padding: 8px;
28 margin-bottom: 15px;
29 border: 1px solid #ccc;
30 border-radius: 4px;
31}
32
33button {
34 background-color: #007bff;
35 color: #fff;
36 padding: 10px;
37 border: none;
38 border-radius: 4px;
39 cursor: pointer;
40}
41
42button:hover {
43 background-color: #007bff;
44}
45
46a {
47 text-decoration: none;
48 color: #0064d2;
49}
50
51a:hover {
52 text-decoration: underline;
53 color: #0056b3;
54}
Note: See TracBrowser for help on using the repository browser.