-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
137 lines (120 loc) · 2.76 KB
/
Copy pathstyles.css
File metadata and controls
137 lines (120 loc) · 2.76 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
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
<!-- ========================================
STYLES GO HERE
We will write all our CSS in this section
======================================== -->
/* Step 1: Style the body */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #f0f4f8;
color: #1a202c;
}
/* Step 2: Style the nav bar */
nav {
background: #032D60;
color: white;
padding: 16px 32px;
font-size: 18px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: space-between;
}
.live-badge {
background: #0078D4;
color: white;
font-size: 12px;
font-weight: 700;
padding: 4px 12px;
border-radius: 20px;
letter-spacing: 0.5px;
}
/* Step 3: Style the profile card */
.container {
max-width: 860px;
margin: 32px auto;
padding: 0 20px;
display: grid;
gap: 24px;
}
.profile-card {
background: white;
border-left: 5px solid #0078D4;
border-radius: 10px;
padding: 28px 32px;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.profile-card h2 {
font-size: 24px;
color: #032D60;
margin-bottom: 4px;
}
.profile-card .role {
color: #0078D4;
font-size: 14px;
font-weight: 600;
margin-bottom: 10px;
}
.profile-card p {
color: #4a5568;
font-size: 14px;
line-height: 1.6;
}
/* Step 4: Style the skills section */
.skills-section,
.progress-section {
background: white;
border-radius: 10px;
padding: 24px 28px;
box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.skills-section h3,
.progress-section h3 {
font-size: 11px;
font-weight: 700;
letter-spacing: 1.5px;
color: #718096;
text-transform: uppercase;
margin-bottom: 16px;
}
.skills-grid {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skills-grid span {
background: #EBF4FF;
color: #032D60;
font-size: 13px;
font-weight: 600;
padding: 8px 16px;
border-radius: 6px;
}
/* Step 5: Style the progress bars */
.progress-item {
margin-bottom: 18px;
}
.progress-item p {
font-size: 13px;
font-weight: 600;
color: #2d3748;
margin-bottom: 6px;
display: flex;
justify-content: space-between;
}
.progress-bar {
background: #e2e8f0;
border-radius: 6px;
height: 10px;
overflow: hidden;
}
.progress-fill {
height: 100%;
border-radius: 6px;
background: linear-gradient(90deg, #0078D4, #00a4ef);
transition: width 1s ease;
}