-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (97 loc) · 1.85 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
@font-face {
font-family: 'Outfit';
src: url('https://link-in-bio.rydercragie.com/outfit.ttf') format('truetype');
}
body, html {
height: 100%;
margin: 0;
}
body {
font-family: 'Outfit', sans-serif; /* Outfit font applied */
background: #ffffff;
color: #333;
text-align: center;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
transition: background 0.3s, color 0.3s;
}
.profile-container {
background-color: #f0f0f0;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: auto;
max-width: 600px;
transition: background-color 0.3s;
}
.profile-picture {
width: 150px;
height: 150px;
border-radius: 50%;
border: 5px solid #000000;
margin: 0 auto;
}
.name {
font-size: 24px;
color: #333;
margin-top: 10px;
font-family: 'Outfit', sans-serif; /* Outfit font applied */
}
.links-list {
list-style: none;
padding: 0;
margin-top: 20px;
}
.links-list li {
margin-bottom: 10px;
}
.social-link {
text-decoration: none;
color: #333;
background-color: #e0e0e0;
padding: 10px 15px;
border-radius: 5px;
display: inline-block;
transition: background-color 0.3s;
font-family: 'Outfit', sans-serif; /* Outfit font applied */
}
.social-link:hover {
background-color: #d4d4d4;
}
.icon {
width: 20px;
height: 20px;
margin-right: 8px;
vertical-align: middle;
}
@media (prefers-color-scheme: dark) {
body {
background: #000000;
color: #f0f0f0;
}
.profile-container {
background-color: #333333;
color: #f0f0f0;
}
.profile-picture {
border: 5px solid #000000;
}
.name {
color: #f0f0f0;
}
.social-link {
background-color: #444444;
color: #f0f0f0;
}
.social-link:hover {
background-color: #555555;
}
}
@media (max-width: 768px) {
.profile-container {
padding-left: 30px;
padding-right: 30px;
}
}