-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (98 loc) · 2.46 KB
/
style.css
File metadata and controls
110 lines (98 loc) · 2.46 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
/* VARIABLES: Change these to change the whole theme */
:root {
--bg-color: #0f172a; /* Dark Navy (Deep Space) */
--card-bg: #1e293b; /* Lighter Navy */
--text-color: #e2e8f0; /* Soft White */
--accent-color: #38bdf8; /* Cyan/Blue (Serenade Energy) */
--danger-color: #f43f5e; /* Red (Repudiate/Dissonance) */
--hover-glow: 0 0 15px rgba(56, 189, 248, 0.5);
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
display: flex;
justify-content: center;
min-height: 100vh;
}
.container {
width: 100%;
max-width: 400px; /* Mobile width */
padding: 40px 20px;
text-align: center;
}
/* AVATAR */
.avatar {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid var(--accent-color);
margin-bottom: 15px;
object-fit: cover;
}
/* TEXT STYLES */
h1 {
font-size: 1.5rem;
margin-bottom: 5px;
}
.bio {
font-size: 0.9rem;
color: #94a3b8; /* Muted text */
margin-bottom: 20px;
}
/* STATUS BADGE */
.status-badge {
display: inline-flex;
align-items: center;
background: rgba(56, 189, 248, 0.1);
padding: 5px 12px;
border-radius: 20px;
font-size: 0.8rem;
color: var(--accent-color);
border: 1px solid var(--accent-color);
}
.status-dot {
height: 8px;
width: 8px;
background-color: var(--accent-color);
border-radius: 50%;
display: inline-block;
margin-right: 6px;
box-shadow: 0 0 5px var(--accent-color);
}
/* LINKS */
.links-container {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 15px;
}
.link-card {
background-color: var(--card-bg);
color: var(--text-color);
padding: 15px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 1px solid transparent;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.link-card:hover {
transform: translateY(-3px);
border-color: var(--accent-color);
box-shadow: var(--hover-glow);
}
/* SPECIAL "DANGER" LINK */
.link-card.special {
border-color: rgba(244, 63, 94, 0.3);
}
.link-card.special:hover {
border-color: var(--danger-color);
box-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
color: var(--danger-color);
}