-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles_edit_user.css
139 lines (126 loc) · 3.2 KB
/
styles_edit_user.css
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* General Body Styling */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, rgba(58, 123, 213, 0.9), rgba(58, 213, 196, 0.9));
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #fff;
}
/* Glass Effect Container */
.container {
background: rgba(255, 255, 255, 0.15);
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 15px;
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
padding: 30px;
max-width: 500px;
width: 90%;
text-align: center;
box-sizing: border-box;
animation: fadeIn 0.5s ease-in-out;
}
/* Fade-in Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* Title Styling */
h2 {
font-size: 2.2rem;
font-weight: bold;
margin-bottom: 20px;
color: #fff;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
/* Form Styling */
form input, form select, textarea {
width: 100%;
padding: 12px;
margin: 10px 0;
border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: 8px;
background: rgba(255, 255, 255, 0.25);
color: #333;
font-size: 1rem;
outline: none;
transition: all 0.3s ease-in-out;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
form input:focus, form select:focus, textarea:focus {
background: rgba(255, 255, 255, 0.35);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.6);
}
/* Button Styling */
form button {
width: 100%;
padding: 12px;
margin-top: 10px;
background: linear-gradient(135deg, rgba(58, 123, 213, 0.8), rgba(58, 213, 196, 0.8));
color: #fff;
border: none;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
form button:hover {
background: linear-gradient(135deg, rgba(58, 213, 196, 0.9), rgba(58, 123, 213, 0.9));
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* Back Button */
.back-btn {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background: rgba(255, 255, 255, 0.15);
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
border: 1px solid rgba(255, 255, 255, 0.3);
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.back-btn:hover {
background: rgba(255, 255, 255, 0.3);
color: #333;
text-decoration: none;
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* Error Message */
form p {
color: red;
font-size: 0.9rem;
margin-top: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
width: 90%;
padding: 20px;
}
h2 {
font-size: 2rem;
}
form button {
font-size: 0.9rem;
padding: 10px;
}
}