-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (104 loc) · 2.04 KB
/
Copy pathstyles.css
File metadata and controls
125 lines (104 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* General Styling */
body {
font-family: 'Arial', sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
color: #333;
}
.profile-container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h1, h2 {
text-align: center;
color: #444;
margin-bottom: 20px;
}
/* Form Group Styling */
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #555;
}
input {
width: 80%;
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
transition: border 0.3s, color 0.3s;
}
input:disabled {
background-color: #f5f5f5;
color: #aaa;
}
input.saved {
color: #000; /* Change text color to black when saved */
}
input:focus {
outline: none;
border-color: #28a745;
box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}
/* Button Group Styling */
.button-group {
margin-top: 10px;
display: flex;
gap: 10px;
}
button {
padding: 8px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s;
}
.edit-button {
background-color: #007bff;
color: white;
}
.edit-button:hover {
background-color: #0056b3;
}
.save-button {
background-color: #28a745;
color: white;
}
.save-button:hover {
background-color: #218838;
}
/* Password Section Styling */
.password-section {
margin-top: 30px;
}
.password-section h2 {
color: #444;
margin-bottom: 15px;
}
.password-section button {
width: auto;
padding: 10px 20px;
font-size: 16px;
}
.password-section button:hover {
background-color: #218838;
}
/* Responsive Design */
@media (max-width: 768px) {
.profile-container {
padding: 15px;
}
input, button {
font-size: 12px;
}
}