-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (95 loc) · 1.53 KB
/
style.css
File metadata and controls
111 lines (95 loc) · 1.53 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", sans-serif;
}
body {
height: 100vh;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.container {
width: 380px;
text-align: center;
}
h1 {
margin-bottom: 20px;
}
.search-box {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
input {
flex: 1;
padding: 12px;
border-radius: 8px;
border: none;
outline: none;
}
button {
padding: 12px 16px;
border-radius: 8px;
border: none;
background: #2ea043;
color: white;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #3fb950;
}
.profile-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(12px);
padding: 25px;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.3);
animation: fadeIn 0.5s ease-in-out;
}
.hidden {
display: none;
}
.profile-card img {
width: 110px;
height: 110px;
border-radius: 50%;
border: 3px solid #3fb950;
margin-bottom: 10px;
}
.profile-card h2 {
margin: 10px 0 5px;
}
.profile-card p {
font-size: 14px;
opacity: 0.9;
margin-bottom: 8px;
}
.stats {
display: flex;
justify-content: space-between;
margin: 15px 0;
}
.stats div {
text-align: center;
}
a {
display: inline-block;
margin-top: 10px;
text-decoration: none;
color: #58a6ff;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}