-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents.css
More file actions
144 lines (127 loc) · 2.92 KB
/
agents.css
File metadata and controls
144 lines (127 loc) · 2.92 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Sidebar */
.sidebar {
position: fixed;
top: 6.5rem;
left: 2rem;
width: 10rem;
height: calc(100% - 6.5rem);
display: flex;
flex-direction: column;
gap: 1.2rem;
padding: 1.5rem 1rem;
z-index: 200;
background: rgba(255, 255, 255, 0.03);
border: var(--BORDER);
backdrop-filter: blur(12px);
border-radius: 12px;
box-shadow: 0 0 20px rgba(254, 193, 70, 0.08);
}
/* Sidebar links */
.sidebar-link {
font-family: var(--FF-MID);
font-size: 1.2rem;
text-decoration: none;
color: var(--GOLD);
padding: 0.7rem 0.8rem;
text-align: center;
border: 1px solid rgba(254, 193, 70, 0.4);
border-radius: 8px;
background: rgba(254, 193, 70, 0.05);
letter-spacing: 1px;
transition: all 0.25s ease;
}
/* Sidebar link hover */
.sidebar-link:hover {
background: var(--GOLD);
color: var(--BLACK);
box-shadow: 0 0 20px rgba(254, 193, 70, 0.9);
transform: translateX(5px);
}
/* Sidebar active */
.sidebar-link:active,
.sidebar-link:focus {
background: var(--AQUAMARINE);
color: var(--BLACK);
border-color: var(--AQUAMARINE);
box-shadow: 0 0 15px rgba(79, 225, 174, 0.8);
transform: translateX(5px);
}
/* Agents layout wrapper */
.agents-wrapper {
margin-left: 300px;
padding: 3rem 4rem;
}
/* Agent section */
.agent-section {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
margin: 5rem 0;
padding: 5rem 0;
border-top: var(--BORDER);
border-bottom: var(--BORDER);
}
/* Agent text box */
.agent-text {
margin-left: 18rem;
margin-top: 5rem;
max-width: 25rem;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
background: rgba(182, 182, 182, 0.1);
backdrop-filter: blur(10px);
}
/* Agent name */
.agent-name {
font-family: var(--FF-HEAD);
font-size: 2.8rem;
color: var(--GOLD);
}
/* Agent title */
.agent-title {
font-size: 1.3rem;
color: var(--RED);
font-family: var(--FF-MID);
margin-bottom: 1rem;
}
/* Bio */
.agent-bio {
margin-bottom: 1.5rem;
}
/* Abilities header */
.abilities h4 {
font-size: 1.2rem;
color: var(--AQUAMARINE);
font-family: var(--FF-MID);
margin-bottom: 0.6rem;
}
/* Ability list */
.abilities ul {
list-style: none;
}
/* Ability item */
.abilities li {
margin-bottom: 0.6rem;
color: #ccc;
}
.abilities li strong {
font-family: var(--FF-MID);
color: var(--AQUAMARINE);
}
/* Agent backgrounds */
#sylara { background-image: url('assets/sylara.png'); background-size: cover; }
#kael { background-image: url('assets/agent-1.png'); background-size: cover; }
#lira { background-image: url('assets/agent-2.png'); background-size: cover; }
#raik { background-image: url('assets/agent-3.png'); background-size: cover; }
#nyx { background-image: url('assets/agent-4.png'); background-size: cover; }
#tharos { background-image: url('assets/agent-5.png'); background-size: cover; }
/* Footer */
.footer-title {
font-family: var(--HEAD);
color: var(--GOLD);
}
.footer-tagline {
font-family: var(--MID);
}