-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApp.css
More file actions
82 lines (70 loc) · 1.24 KB
/
App.css
File metadata and controls
82 lines (70 loc) · 1.24 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
.App {
text-align: center;
min-height: 100vh;
background-color: #1a1a1a;
color: #e0e0e0;
}
.App-header {
background-color: #111;
padding: 20px;
border-bottom: 2px solid #61dafb;
}
.header-content {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
}
.official-badge {
background: #61dafb;
color: #111;
padding: 2px 8px;
border-radius: 4px;
font-size: 0.8rem;
font-weight: bold;
}
nav {
margin-top: 20px;
}
nav button {
padding: 10px 20px;
margin: 5px 10px;
background: transparent;
border: 1px solid #61dafb;
color: #61dafb;
cursor: pointer;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
text-transform: uppercase;
border-radius: 4px;
transition: all 0.3s ease;
}
nav button.active {
background: #61dafb;
color: #000;
}
nav button:hover {
box-shadow: 0 0 10px rgba(97, 218, 251, 0.5);
background: rgba(97, 218, 251, 0.1);
}
main {
padding: 20px;
flex: 1;
}
.global-footer {
background: #111;
padding: 20px;
border-top: 1px solid #333;
margin-top: 40px;
}
.global-footer a {
color: #61dafb;
text-decoration: none;
}
.global-footer a:hover {
text-decoration: underline;
}
.App {
display: flex;
flex-direction: column;
min-height: 100vh;
}