-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
styles.css
120 lines (104 loc) · 1.99 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: white;
padding: 20px;
border: 2px solid #ccc;
border-radius: 10px;
width: 90%;
max-width: 700px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.profile-card {
display: grid;
grid-template-rows: auto auto auto;
width: 100%;
}
.profile-header {
border-bottom: 2px solid #e0e0e0;
padding-bottom: 10px;
}
.profile-header h2 {
font-size: 24px;
color: #333;
font-weight: bold;
}
.profile-header p {
color: #999;
font-size: 14px;
}
.titles {
display: flex;
gap: 10px;
margin-top: 10px;
}
.title-btn {
border: 1px solid #333;
padding: 5px 10px;
background-color: white;
cursor: pointer;
font-size: 14px;
}
.image-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}
/* Background box styling */
.background-box {
position: absolute;
width: 250px;
height: 250px;
background-color: #0073ff; /* Blue color for the box */
border-radius: 10px;
z-index: 1;
filter: opacity(0.7);
transform: rotate(10deg);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Profile image styling */
.profile-image {
position: relative;
z-index: 2;
}
.profile-image img {
width: 200px;
border-radius: 10px;
}
.profile-footer {
border-top: 2px solid #e0e0e0;
padding-top: 10px;
}
.profile-footer h3 {
font-size: 18px;
color: #333;
margin-bottom: 10px;
}
.keywords {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.keywords span {
background-color: #f0f0f0;
padding: 5px 10px;
border-radius: 5px;
font-size: 14px;
color: #555;
}