-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (96 loc) · 1.88 KB
/
style.css
File metadata and controls
110 lines (96 loc) · 1.88 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
/* Base Styles */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 0;
line-height: 1.6;
}
/* Header */
header {
background-color: #1a1a1a;
padding: 40px 20px;
text-align: center;
border-bottom: 3px solid #ff4500;
}
header h1 {
margin: 0;
font-size: 3em;
color: #ffffff;
}
header p {
font-size: 1.2em;
color: #aaaaaa;
}
/* Navigation */
nav {
display: flex;
justify-content: center;
gap: 30px;
padding: 15px;
background-color: #242424;
}
nav a {
color: #e0e0e0;
text-decoration: none;
font-weight: bold;
font-size: 1.1em;
transition: color 0.3s ease;
}
nav a:hover, nav a.active {
color: #ff4500;
}
/* Main Content */
main {
padding: 50px 20px;
max-width: 800px;
margin: 0 auto;
text-align: center;
}
main h2 {
color: #ffffff;
}
/* Buttons */
.btn {
display: inline-block;
background-color: #ff4500;
color: #ffffff;
padding: 12px 25px;
text-decoration: none;
border-radius: 6px;
margin-top: 20px;
font-weight: bold;
font-size: 1.1em;
transition: background-color 0.3s ease, transform 0.1s ease;
}
.btn:hover {
background-color: #ff5722;
}
.btn:active {
transform: scale(0.98);
}
/* Download Boxes */
.download-box {
background-color: #1a1a1a;
padding: 25px;
margin: 25px auto;
border-radius: 10px;
border: 1px solid #333;
max-width: 500px;
text-align: left;
}
.download-box h3 {
margin-top: 0;
color: #ffffff;
border-bottom: 1px solid #333;
padding-bottom: 10px;
}
/* Footer */
footer {
text-align: center;
padding: 30px;
color: #666666;
background-color: #0a0a0a;
margin-top: 40px;
}