-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedituser.css
93 lines (81 loc) · 1.72 KB
/
edituser.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
* {
margin-top: 20px;
}
body {
background-image: url('farm.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
justify-content: center;
align-items: center;
}
.edituser-container {
align-items: center;
padding: 35px;
padding-top: 5px;
background-color: rgb(254, 238, 208);
height: 680px;
width: 320px;
border: 1px solid #ddd;
border-radius: 10px;
margin-bottom: 40px;
display: flex;
justify-content: center;
}
.edituser-form {
background-color: cadetblue;
padding: 25px;
margin-top: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.edituser-form h2 {
text-align: center;
margin-bottom: 20px;
}
.input-group {
margin-bottom: 15px;
}
.input-group label {
display: block;
margin-bottom: 5px;
}
.input-group input {
width: 100%;
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
margin-right: 0px;
margin-left: 1px;
}
button {
width: 100%;
padding: 10px;
background-color: rgb(254, 238, 208);
border: none;
color: black;
border-radius: 3px;
cursor: pointer;
margin-right: 20px;
}
button:hover {
background-color: rgb(55, 106, 107);
}
.home-button {
margin-top: 20px;
display: flex;
justify-content: center;
}
.home-button a {
display: inline-block;
padding: 10px 20px;
background-color: cadetblue;
color: black;
text-decoration: none;
border-radius: 3px;
transition: background-color 0.3s;
}
.home-button a:hover {
background-color: rgb(55, 106, 107);
}