-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (128 loc) · 3.25 KB
/
index.html
File metadata and controls
149 lines (128 loc) · 3.25 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
145
146
147
148
149
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Gettin' REACTive</title>
<style>
/* === Your Original Styling === */
:root {
--bg: #fff7fb;
--card: #fff;
--muted: #6b6170;
--accent-1: #ff7ab6;
--accent-2: #ffb3d9;
--accent-3: #ffdfee;
--glass: rgba(255, 255, 255, 0.6);
--radius: 18px;
--max: 1100px;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
color: #332532;
}
html,
body {
min-height: 100%;
}
body {
margin: 0;
background: linear-gradient(180deg, var(--accent-3) 0%, var(--bg) 40%);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding: 48px 20px;
display: flex;
justify-content: center;
}
.wrap {
width: 100%;
max-width: var(--max);
display: grid;
gap: 28px;
}
header.hero {
background: linear-gradient(135deg, rgba(255, 122, 182, 0.12), rgba(255, 179, 217, 0.08));
border-radius: var(--radius);
padding: 40px 36px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 16px;
box-shadow: 0 8px 30px rgba(109, 70, 94, 0.08);
border: 1px solid rgba(255, 122, 182, 0.12);
}
.logo {
width: 80px;
height: 80px;
border-radius: 16px;
background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 18px;
box-shadow: 0 6px 18px rgba(255, 122, 182, 0.22), inset 0 -6px 12px rgba(0, 0, 0, 0.06);
}
h1 {
margin: 0;
font-size: 22px;
letter-spacing: -0.2px;
}
p.lead {
margin: 6px 0 0;
color: var(--muted);
font-size: 14px;
}
.grid {
display: flex;
flex-direction: column;
gap: 16px;
}
.card {
background: var(--card);
padding: 20px;
border-radius: 14px;
border: 1px solid rgba(0, 0, 0, 0.04);
box-shadow: 0 8px 20px rgba(100, 40, 80, 0.03);
cursor: pointer;
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 24px rgba(255, 122, 182, 0.12);
}
.card h3 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: var(--accent-1);
}
.card p {
margin: 6px 0 0;
font-size: 14px;
color: var(--muted);
}
.card div {
justify-content: center;
}
footer {
text-align: center;
color: var(--muted);
font-size: 12px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="wrap">
<header class="hero">
<div class="logo">Frontera Devs</div>
<h1>Gettin' REACTive: Your First Steps into Frontend </h1>
<!-- <p class="lead">Navigate through setup, introduction, and coding challenges.</p> -->
</header>
<section class="grid" id="linksContainer">
</section>
</div>
<script src="script.js"></script>
</body>
</html>