-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (121 loc) · 3.59 KB
/
Copy pathindex.html
File metadata and controls
123 lines (121 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XedaDev - XedaCarOS</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background: #f3e5f5; /* Light purple background */
color: #4a148c; /* Dark purple text */
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
max-width: 1200px;
text-align: center;
}
.title-box {
background: #fff;
border-radius: 15px;
padding: 30px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
display: inline-block;
}
.badge-title {
display: inline-flex;
align-items: center;
background-color: #8e24aa; /* Deep purple */
color: #fff;
padding: 15px 25px;
border-radius: 50px;
font-size: 36px;
font-weight: bold;
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
position: relative;
}
.badge-title::before,
.badge-title::after {
content: '🎉';
margin: 0 10px;
font-size: 36px;
}
.subtitle {
font-size: 32px;
margin: 20px 0;
color: #6a1b9a; /* Purple subtitle */
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 40px;
}
.feature {
background: #fff;
border-radius: 10px;
padding: 20px;
width: 200px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.feature:hover {
transform: translateY(-10px);
}
.feature h3 {
margin-top: 10px;
font-size: 24px;
color: #4a148c; /* Dark purple for feature headings */
}
.cta-button {
display: inline-block;
margin-top: 50px;
padding: 15px 30px;
font-size: 18px;
color: #fff;
background: #8e24aa; /* Deep purple button */
border: none;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s;
text-decoration: none;
}
.cta-button:hover {
background: #7b1fa2; /* Lighter purple on hover */
}
.cta-button .github-icon {
vertical-align: middle;
margin-right: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="badge-title">XedaDev</h1>
<div class="subtitle">Introducing XedaCarOS 🚗</div>
<div class="features">
<div class="feature">
<div style="font-size: 50px;">⚡️</div>
<h3>Fast Responses</h3>
</div>
<div class="feature">
<div style="font-size: 50px;">🤖</div>
<h3>AI Autonomous Driving</h3>
</div>
<div class="feature">
<div style="font-size: 50px;">🎨</div>
<h3>Modern UI</h3>
</div>
</div>
<a href="https://github.com/Xeda-Development/XedaCarOS" class="cta-button">
Xeda-Development/XedaCarOS
</a>
</div>
</body>
</html>