-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (68 loc) · 1.13 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
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #1e1e1e;
color: #d3d3d3;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 700px;
background-color: #2c2c2c;
border-radius: 8px;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
padding: 30px;
line-height: 1.6;
text-align: center;
}
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 0 auto 20px;
border: 3px solid #61dafb;
}
h1 {
font-size: 2rem;
color: #61dafb;
margin-bottom: 10px;
}
.highlight {
color: #61dafb;
font-weight: 500;
}
.icons {
margin-top: 20px;
font-size: 2rem;
color: #61dafb;
}
.icons i {
margin: 0 8px;
transition: color 0.3s;
}
.icons i:hover {
color: #3792d3;
}
.footer {
margin-top: 30px;
font-size: 0.9rem;
color: #aaa;
text-align: center;
}
a {
color: #61dafb;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #3792d3;
}
</style>