-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcreate_user.css
More file actions
97 lines (84 loc) · 1.62 KB
/
create_user.css
File metadata and controls
97 lines (84 loc) · 1.62 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
/* Container styling */
.add-user-container {
padding: 40px;
max-width: 650px;
margin: 50px auto;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.page-title {
margin-bottom: 30px;
font-size: 26px;
font-weight: 700;
text-align: center;
background-color: #007bff;
color: white;
border-radius: 8px;
padding: 15px;
}
/* Form styling */
.user-form .form-group {
margin-bottom: 20px;
}
label {
font-size: 16px;
font-weight: 500;
color: #333;
display: inline-block;
margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="password"],
select {
font-size: 16px;
padding: 12px;
border-radius: 6px;
border: 1px solid #ced4da;
width: 100%;
box-sizing: border-box;
}
input[type="checkbox"] {
width: 18px;
height: 18px;
}
.user-form .form-check-input {
margin-right: 8px;
}
.user-form button {
background-color: #007bff;
color: white;
padding: 12px;
border: none;
border-radius: 6px;
font-size: 16px;
font-weight: 600;
transition: background-color 0.3s ease;
width: 100%;
}
.user-form button:hover {
background-color: #0056b3;
}
.user-form button i {
margin-right: 8px;
}
/* Responsive styling */
@media (max-width: 768px) {
.add-user-container {
padding: 30px;
}
.page-title {
font-size: 22px;
}
input[type="text"],
input[type="email"],
input[type="password"],
select {
font-size: 14px;
}
.user-form button {
font-size: 14px;
padding: 10px;
}
}