Spaces:
Sleeping
Sleeping
File size: 1,836 Bytes
1f725d8 | 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 | /* static/baseTemplate.css */
:root {
--bg-main: #0a0b10;
--bg-card: rgba(255, 255, 255, 0.03);
--border-color: rgba(255, 255, 255, 0.1);
--accent: #6d5dfc;
--accent-hover: #5b4ce3;
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--glass-bg: rgba(10, 11, 16, 0.8);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
body {
background-color: var(--bg-main);
color: var(--text-primary);
overflow-x: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
}
h1,
h2,
h3 {
font-family: "Outfit", sans-serif;
}
header {
background: var(--glass-bg);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
}
.logo h1 {
font-size: 1.5rem;
font-weight: 800;
background: linear-gradient(135deg, #6d5dfc, #e92efb);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
nav a {
color: var(--text-secondary);
text-decoration: none;
margin-left: 2rem;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.3s ease;
}
nav a:hover,
nav a.active {
color: var(--accent);
}
.page-wrapper {
flex: 1;
padding: 2rem 5%;
}
footer {
padding: 2rem 5%;
border-top: 1px solid var(--border-color);
text-align: center;
color: var(--text-secondary);
font-size: 0.8rem;
}
.btn-premium {
background: var(--accent);
color: white;
border: none;
padding: 0.8rem 1.5rem;
border-radius: 12px;
font-weight: 600;
cursor: pointer;
transition:
transform 0.2s ease,
background 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-premium:hover {
background: var(--accent-hover);
transform: translateY(-2px);
}
|