Spaces:
Running
Running
Create static/css/style.css
Browse files- static/css/style.css +32 -0
static/css/style.css
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: sans-serif;
|
3 |
+
display: flex;
|
4 |
+
justify-content: center;
|
5 |
+
padding: 40px;
|
6 |
+
background: #f7f7f7;
|
7 |
+
}
|
8 |
+
.card {
|
9 |
+
max-width: 420px;
|
10 |
+
background: #fff;
|
11 |
+
padding: 24px;
|
12 |
+
text-align: center;
|
13 |
+
border-radius: 12px;
|
14 |
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
15 |
+
}
|
16 |
+
.avatar {
|
17 |
+
width: 120px;
|
18 |
+
height: 120px;
|
19 |
+
border-radius: 50%;
|
20 |
+
object-fit: cover;
|
21 |
+
background: #ddd;
|
22 |
+
}
|
23 |
+
.btn {
|
24 |
+
display: inline-block;
|
25 |
+
margin-top: 16px;
|
26 |
+
padding: 12px 24px;
|
27 |
+
background: #2AABEE;
|
28 |
+
color: #fff;
|
29 |
+
border-radius: 8px;
|
30 |
+
text-decoration: none;
|
31 |
+
font-weight: bold;
|
32 |
+
}
|