-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (82 loc) · 1.59 KB
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #ff85a1;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.profile-container {
background-color: #ffebf5;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
width: 300px;
}
.profile-container h1 {
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.profile-picture {
position: relative;
width: 100px;
height: 100px;
margin: 0 auto 20px;
border-radius: 50%;
overflow: hidden;
background-color: #d9bfc4;
}
.profile-picture img {
width: 100%;
height: 100%;
object-fit: cover;
}
.edit-icon {
position: absolute;
bottom: 0;
right: 0;
width: 25px;
height: 25px;
background-color: #fff;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.edit-icon img {
width: 15px;
height: 15px;
}
.profile-details {
margin-bottom: 20px;
}
.profile-details label {
display: block;
font-size: 14px;
margin-bottom: 5px;
color: #555;
}
.profile-details input {
width: calc(100% - 20px);
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #fff;
}
.logout-button {
background-color: #ff5e7a;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.logout-button:hover {
background-color: #ff4b69;
}