-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (87 loc) · 2.44 KB
/
styles.css
File metadata and controls
95 lines (87 loc) · 2.44 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
/* ============================================================
opensource.python.ph — Placeholder styles
============================================================ */
:root {
--clr-orange-1: #f26d1d;
--clr-orange-2: #e05a0c;
--clr-brown-1: #6b4226;
--clr-brown-2: #8b5e3c;
--clr-cream: #fff9f2;
--clr-border: #e8d5c4;
--clr-white: #ffffff;
--grad-hero: linear-gradient(135deg, #fff9f2 0%, #fdecd8 50%, #fbd9b8 100%);
--grad-brand: linear-gradient(135deg, var(--clr-orange-1) 0%, var(--clr-orange-2) 100%);
--grad-text: linear-gradient(135deg, var(--clr-orange-1) 0%, var(--clr-brown-2) 100%);
--font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
--container: 1160px;
--radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--clr-brown-1); background: var(--clr-white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gradient-text {
background: var(--grad-text);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* ── Banner ── */
.banner {
background: var(--clr-brown-1);
color: rgba(255,255,255,0.8);
text-align: center;
font-size: 0.82rem;
font-weight: 500;
padding: 10px 24px;
letter-spacing: 0.01em;
}
/* ── Button ── */
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
border-radius: 50px;
font-weight: 700;
font-size: 0.95rem;
transition: all 0.2s ease;
white-space: nowrap;
}
.btn--primary {
background: var(--grad-brand);
color: var(--clr-white);
box-shadow: 0 4px 20px rgba(242, 109, 29, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242, 109, 29, 0.45); }
/* ── Hero ── */
.hero {
background: var(--grad-hero);
min-height: calc(100vh - 41px);
display: flex;
align-items: center;
}
.hero__content {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 24px;
padding: 80px 0;
}
.hero__title {
font-size: clamp(2.4rem, 6vw, 4.2rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -1.5px;
color: var(--clr-brown-1);
}
.hero__sub {
max-width: 420px;
font-size: 1.05rem;
color: var(--clr-brown-2);
}
@media (max-width: 480px) {
.hero__title { letter-spacing: -0.8px; }
}