source:
CSS/EditProfile.css
Last change on this file was 75f74d9, checked in by , 6 weeks ago | |
---|---|
|
|
File size: 1.4 KB |
Line | |
---|---|
1 | body { |
2 | font-family: "Libre Baskerville", Georgia, serif; |
3 | background-color: #f5f5f5; |
4 | margin: 0; |
5 | padding: 20px; |
6 | color: #333; |
7 | } |
8 | |
9 | .container { |
10 | max-width: 600px; |
11 | margin: 40px auto; |
12 | background: white; |
13 | padding: 30px; |
14 | border-radius: 8px; |
15 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
16 | } |
17 | |
18 | h1 { |
19 | color: #2e7d32; |
20 | font-size: 24px; |
21 | margin-bottom: 30px; |
22 | padding-bottom: 10px; |
23 | border-bottom: 2px solid #eee; |
24 | } |
25 | |
26 | .form-group { |
27 | margin-bottom: 20px; |
28 | } |
29 | |
30 | label { |
31 | display: block; |
32 | margin-bottom: 8px; |
33 | font-weight: 600; |
34 | color: #445; |
35 | } |
36 | |
37 | input { |
38 | width: 100%; |
39 | padding: 12px; |
40 | border: 1px solid #ddd; |
41 | border-radius: 4px; |
42 | font-size: 16px; |
43 | transition: border-color 0.3s ease; |
44 | box-sizing: border-box; |
45 | } |
46 | |
47 | input:focus { |
48 | outline: none; |
49 | border-color: #2e7d32; |
50 | box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1); |
51 | } |
52 | |
53 | .btn { |
54 | background-color: #2e7d32; |
55 | color: white; |
56 | padding: 12px 24px; |
57 | border: none; |
58 | border-radius: 4px; |
59 | font-size: 16px; |
60 | cursor: pointer; |
61 | transition: background-color 0.3s ease; |
62 | } |
63 | |
64 | .btn:hover { |
65 | background-color: #1b5e20; |
66 | } |
67 | |
68 | .btn-secondary { |
69 | background-color: #757575; |
70 | margin-right: 10px; |
71 | } |
72 | |
73 | .btn-secondary:hover { |
74 | background-color: #616161; |
75 | } |
76 | |
77 | .button-group { |
78 | margin-top: 30px; |
79 | display: flex; |
80 | gap: 10px; |
81 | } |
82 | |
83 | @media (max-width: 480px) { |
84 | .container { |
85 | padding: 20px; |
86 | margin: 20px auto; |
87 | } |
88 | } |
Note:
See TracBrowser
for help on using the repository browser.