-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgalagastyles.css
107 lines (93 loc) · 1.97 KB
/
galagastyles.css
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
/* Hero Section */
#galaga-hero {
background: linear-gradient(135deg, #1e3c72, #2a5298); /* Subtle space-themed gradient */
color: #fff;
text-align: center;
padding: 80px 20px;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
#galaga-hero h1 {
font-size: 3.5rem;
margin-bottom: 15px;
font-family: 'Lobster', cursive;
}
#galaga-hero p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto;
}
/* Features Section */
#galaga-details {
padding: 50px 20px;
background: #f7f7f7;
text-align: center;
}
.features-list {
list-style: none;
padding: 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 20px auto;
max-width: 800px;
}
.features-list li {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
gap: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features-list li:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.features-list i {
font-size: 2rem;
color: #2088ff; /* Themed icons */
}
/* Technologies Section */
.tech-list {
list-style: none;
padding: 0;
margin: 20px auto;
max-width: 600px;
}
.tech-list li {
background: #fff;
padding: 10px 20px;
margin: 10px 0;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: left;
}
/* Buttons */
.btn-container {
margin-top: 30px;
display: flex;
justify-content: center;
gap: 20px;
}
.btn.github {
background: #6cc644;
color: #fff;
}
.btn.download {
background: #2088ff;
color: #fff;
}
.btn {
padding: 12px 25px;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
border-radius: 25px;
transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover {
transform: scale(1.05);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}