-
Notifications
You must be signed in to change notification settings - Fork 0
/
profstyle.css
71 lines (61 loc) · 1.17 KB
/
profstyle.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
.profile-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: #1E293B;
}
.profile-card {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
.profile-pic {
width: 120px;
height: 120px;
overflow: hidden;
border-radius: 50%;
border: 2px solid #DBF301;
}
.profile-pic img {
width: 100%;
height: 100%;
object-fit: cover;
}
.profile-username h2 {
background-color: #DBF301;
padding: 10px;
border-radius: 10px;
margin-bottom: 10px;
}
.goals-container {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.goal-card {
width: 30%;
padding: 20px;
margin-right:20px;
border: 2px solid #DBF301;
border-radius: 10px;
background-color: #fff;
text-align: center;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.goal-card h3 {
color: #DBF301;
}
.goal-card p {
color: #1E293B;
}
.goal-card:hover {
transform: scale(1.05);
opacity: 0.9;
}
.graph-container {
margin-top: 20px;
}